Skip to content

Commit

Permalink
ci(test): use test_matrix and test jobs (#483)
Browse files Browse the repository at this point in the history
Co-authored-by: wolfy1339 <4595477+wolfy1339@users.noreply.github.com>
  • Loading branch information
oscard0m and wolfy1339 committed Jul 11, 2022
1 parent b517ae0 commit fe7da7b
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/test.yml
Expand Up @@ -9,7 +9,7 @@ name: Test
- opened
- synchronize
jobs:
test:
test_matrix:
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -27,4 +27,11 @@ jobs:
- name: Install
run: npm ci
- name: Test
run: npm test
run: npm test --ignore-scripts # run lint only once
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 fe7da7b

Please sign in to comment.