Skip to content

Commit

Permalink
[actions] update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Oct 13, 2021
1 parent 2eda5b7 commit b748956
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/node-6+.yml
Expand Up @@ -20,6 +20,7 @@ jobs:
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix: ${{ fromJson(needs.matrix.outputs.latest) }}

steps:
Expand All @@ -29,7 +30,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- run: npm run tests-only
- uses: codecov/codecov-action@v1
- uses: codecov/codecov-action@v2

minors:
needs: [matrix, latest]
Expand All @@ -39,6 +40,7 @@ jobs:
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix: ${{ fromJson(needs.matrix.outputs.minors) }}

steps:
Expand All @@ -48,11 +50,11 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- run: npm run tests-only
- uses: codecov/codecov-action@v1
- uses: codecov/codecov-action@v2

node:
name: 'node 6+'
needs: [latest, minors]
runs-on: ubuntu-latest
steps:
- run: 'echo tests completed'
- run: 'echo tests completed'

0 comments on commit b748956

Please sign in to comment.