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 adc09fe commit db4e8ccCopy full SHA for db4e8cc
1 file changed
.github/workflows/nodejs.yml
@@ -99,8 +99,13 @@ jobs:
99
architecture: ${{ steps.calculate_architecture.outputs.result }}
100
cache: "npm"
101
102
+ - name: Install dependencies (old)
103
+ run: npm ci --ignore-scripts
104
+ if: matrix.node-version == '10.x' && matrix.node-version == '12.x' && matrix.node-version == '14.x' && matrix.node-version == '16.x' && matrix.node-version == '18.x'
105
+
106
- name: Install dependencies
107
run: npm ci
108
+ if: matrix.node-version != '10.x' && matrix.node-version != '12.x' && matrix.node-version != '14.x' && matrix.node-version != '16.x' && matrix.node-version != '18.x'
109
110
- name: Install webpack ${{ matrix.webpack-version }}
111
if: matrix.webpack-version != 'latest'
0 commit comments