We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70b22a6 commit 3321100Copy full SHA for 3321100
.github/workflows/test.yml
@@ -13,7 +13,7 @@ name: Test
13
- opened
14
- synchronize
15
jobs:
16
- test:
+ test_matrix:
17
runs-on: ubuntu-latest
18
strategy:
19
matrix:
@@ -31,5 +31,12 @@ jobs:
31
- run: npm ci
32
- run: npm run start-fixtures-server &
33
- run: sleep 3
34
- - run: npm run test
+ - run: npm run test --ignore-scripts # run lint only once
35
- run: npm run test:typescript
36
+ test:
37
+ runs-on: ubuntu-latest
38
+ needs: test_matrix
39
+ steps:
40
+ - uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3
41
+ - run: npm ci
42
+ - run: npm run lint
0 commit comments