Skip to content

Commit 3c05a87

Browse files
committed
[Tests] exclude node v0.6, for now
1 parent 8c52d12 commit 3c05a87

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/node-zero.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ jobs:
1212
- uses: ljharb/actions/node/matrix@main
1313
id: set-matrix
1414
with:
15+
versionsAsRoot: true
1516
preset: '0.x'
1617

1718
stable:
@@ -20,7 +21,8 @@ jobs:
2021
runs-on: ubuntu-latest
2122

2223
strategy:
23-
matrix: ${{ fromJson(needs.matrix.outputs.stable) }}
24+
matrix:
25+
node-version: ${{ fromJson(needs.matrix.outputs.stable) }}
2426

2527
steps:
2628
- uses: actions/checkout@v2
@@ -39,7 +41,10 @@ jobs:
3941
runs-on: ubuntu-latest
4042

4143
strategy:
42-
matrix: ${{ fromJson(needs.matrix.outputs.unstable) }}
44+
matrix:
45+
node-version: ${{ fromJson(needs.matrix.outputs.unstable) }}
46+
exclude:
47+
- node-version: '0.6'
4348

4449
steps:
4550
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)