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 8c52d12 commit 3c05a87Copy full SHA for 3c05a87
1 file changed
.github/workflows/node-zero.yml
@@ -12,6 +12,7 @@ jobs:
12
- uses: ljharb/actions/node/matrix@main
13
id: set-matrix
14
with:
15
+ versionsAsRoot: true
16
preset: '0.x'
17
18
stable:
@@ -20,7 +21,8 @@ jobs:
20
21
runs-on: ubuntu-latest
22
23
strategy:
- matrix: ${{ fromJson(needs.matrix.outputs.stable) }}
24
+ matrix:
25
+ node-version: ${{ fromJson(needs.matrix.outputs.stable) }}
26
27
steps:
28
- uses: actions/checkout@v2
@@ -39,7 +41,10 @@ jobs:
39
41
40
42
43
- matrix: ${{ fromJson(needs.matrix.outputs.unstable) }}
44
45
+ node-version: ${{ fromJson(needs.matrix.outputs.unstable) }}
46
+ exclude:
47
+ - node-version: '0.6'
48
49
50
0 commit comments