File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 4646 node-version : ${{ matrix.node-version }}
4747 architecture : ${{ steps.calculate_architecture.outputs.result }}
4848 cache : npm
49+ # npm is fully broken for Node.js@6
50+ - name : Install old versions (optional)
51+ run : yarn
52+ if : matrix.node-version == '6.x'
4953 - name : Install dependencies
5054 run : npm install
51- if : matrix.node-version == '6.x' || matrix.node-version == ' 8.x' || matrix.node-version == '10.x' || matrix.node-version == '12.x' || matrix.node-version == '14.x'
55+ if : matrix.node-version == '8.x' || matrix.node-version == '10.x' || matrix.node-version == '12.x' || matrix.node-version == '14.x'
5256 - name : Install dependencies
5357 run : npm ci
5458 if : matrix.node-version != '6.x' && matrix.node-version != '8.x' && matrix.node-version != '10.x' && matrix.node-version != '12.x' && matrix.node-version != '14.x'
You can’t perform that action at this time.
0 commit comments