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 7872c05 commit bdb96ffCopy full SHA for bdb96ff
.github/workflows/test.yml
@@ -46,8 +46,12 @@ jobs:
46
node-version: ${{ matrix.node-version }}
47
architecture: ${{ steps.calculate_architecture.outputs.result }}
48
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'
52
- name: Install dependencies
53
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'
55
- name: Run tests with coverage
56
run: npm run test -- --ci --coverage
57
- uses: codecov/codecov-action@v5
0 commit comments