Skip to content

Commit bdb96ff

Browse files
ci: fix
1 parent 7872c05 commit bdb96ff

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,12 @@ jobs:
4646
node-version: ${{ matrix.node-version }}
4747
architecture: ${{ steps.calculate_architecture.outputs.result }}
4848
cache: npm
49+
- name: Install dependencies
50+
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'
4952
- name: Install dependencies
5053
run: npm ci
54+
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'
5155
- name: Run tests with coverage
5256
run: npm run test -- --ci --coverage
5357
- uses: codecov/codecov-action@v5

0 commit comments

Comments
 (0)