Skip to content

Commit

Permalink
fix: addd linting and cached dependecnies step in workflow (#224)
Browse files Browse the repository at this point in the history
  • Loading branch information
spaenleh authored Aug 4, 2023
1 parent db8ff9c commit 6130b6f
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,17 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: 18.15

- name: yarn install, build, and test
run: |
yarn
yarn build
yarn test

- name: Yarn Install and Cache
uses: graasp/graasp-deploy/.github/actions/yarn-install-and-cache@v1

- name: Check code linting
run: yarn check

- name: Build
run: yarn build

- name: Test
run: yarn test
env:
CI: true

0 comments on commit 6130b6f

Please sign in to comment.