3 changed files with 34 additions and 8 deletions
@ -0,0 +1,30 @@ |
|||||||
|
name: Testing |
||||||
|
|
||||||
|
on: |
||||||
|
push: |
||||||
|
branches: |
||||||
|
- next |
||||||
|
pull_request: |
||||||
|
types: [opened, reopened] |
||||||
|
|
||||||
|
permissions: read-all |
||||||
|
|
||||||
|
jobs: |
||||||
|
build: |
||||||
|
name: Build |
||||||
|
runs-on: ubuntu-latest |
||||||
|
|
||||||
|
steps: |
||||||
|
- name: Checkout code |
||||||
|
uses: actions/checkout@v2 |
||||||
|
|
||||||
|
- name: Install Node.js |
||||||
|
uses: actions/setup-node@v1 |
||||||
|
with: |
||||||
|
node-version: 16 |
||||||
|
|
||||||
|
- name: Install Yarn packages |
||||||
|
run: yarn install |
||||||
|
|
||||||
|
- name: Build project |
||||||
|
run: yarn build |
Loading…
Reference in new issue