Skip to content

Commit

Permalink
build: refactor: run each test suite in a different step
Browse files Browse the repository at this point in the history
For clarity.
  • Loading branch information
Jonathan Ginsburg committed Mar 30, 2022
1 parent a9982b9 commit e4dc3a0
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/test.yml
Expand Up @@ -32,7 +32,9 @@ jobs:
--verbose \
--from `git merge-base origin/master $GITHUB_SHA`
- run: npm run build
- run: npm run test
- run: npm run test:unit
- run: npm run test:e2e
- run: npm run test:integration
windows:
name: "Node ${{ matrix.node }} on Windows: Test and Lint"
runs-on: windows-latest
Expand All @@ -55,4 +57,6 @@ jobs:
cache: npm
- run: npm ci
- run: npm run build
- run: npm run test
- run: npm run test:unit
- run: npm run test:e2e
- run: npm run test:integration

0 comments on commit e4dc3a0

Please sign in to comment.