chore: 🤖 Separeted lint and tests in github actions

This commit is contained in:
Viktor Sarström 2021-12-01 10:02:21 +01:00
parent 75f80bba43
commit e381613abd
1 changed files with 8 additions and 3 deletions

View File

@ -26,9 +26,14 @@ jobs:
- name: Install dependencies
run: yarn
- name: Run linting and tests
- name: Run lint
run: |
yarn nx run-many --all --target=lint
yarn nx run-many --all --target=test
yarn lint
env:
CI: true
- name: Run tests
run: |
yarn test
env:
CI: true