Skip to content

Commit e4dc3a0

Browse files
author
Jonathan Ginsburg
committed
build: refactor: run each test suite in a different step
For clarity.
1 parent a9982b9 commit e4dc3a0

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/test.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@ jobs:
3232
--verbose \
3333
--from `git merge-base origin/master $GITHUB_SHA`
3434
- run: npm run build
35-
- run: npm run test
35+
- run: npm run test:unit
36+
- run: npm run test:e2e
37+
- run: npm run test:integration
3638
windows:
3739
name: "Node ${{ matrix.node }} on Windows: Test and Lint"
3840
runs-on: windows-latest
@@ -55,4 +57,6 @@ jobs:
5557
cache: npm
5658
- run: npm ci
5759
- run: npm run build
58-
- run: npm run test
60+
- run: npm run test:unit
61+
- run: npm run test:e2e
62+
- run: npm run test:integration

0 commit comments

Comments
 (0)