Skip to content

Commit

Permalink
ci(test): use test_matrix and test jobs (#168)
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfy1339 committed Jul 11, 2022
1 parent 70b22a6 commit 3321100
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ name: Test
- opened
- synchronize
jobs:
test:
test_matrix:
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -31,5 +31,12 @@ jobs:
- run: npm ci
- run: npm run start-fixtures-server &
- run: sleep 3
- run: npm run test
- run: npm run test --ignore-scripts # run lint only once
- run: npm run test:typescript
test:
runs-on: ubuntu-latest
needs: test_matrix
steps:
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3
- run: npm ci
- run: npm run lint

0 comments on commit 3321100

Please sign in to comment.