Skip to content

Commit

Permalink
[Tests] exclude node v0.6, for now
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Feb 20, 2021
1 parent 8c52d12 commit 3c05a87
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/node-zero.yml
Expand Up @@ -12,6 +12,7 @@ jobs:
- uses: ljharb/actions/node/matrix@main
id: set-matrix
with:
versionsAsRoot: true
preset: '0.x'

stable:
Expand All @@ -20,7 +21,8 @@ jobs:
runs-on: ubuntu-latest

strategy:
matrix: ${{ fromJson(needs.matrix.outputs.stable) }}
matrix:
node-version: ${{ fromJson(needs.matrix.outputs.stable) }}

steps:
- uses: actions/checkout@v2
Expand All @@ -39,7 +41,10 @@ jobs:
runs-on: ubuntu-latest

strategy:
matrix: ${{ fromJson(needs.matrix.outputs.unstable) }}
matrix:
node-version: ${{ fromJson(needs.matrix.outputs.unstable) }}
exclude:
- node-version: '0.6'

steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit 3c05a87

Please sign in to comment.