We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05c904b commit a80c597Copy full SHA for a80c597
1 file changed
.github/workflows/test.yml
@@ -6,7 +6,7 @@ jobs:
6
build:
7
runs-on: ${{ matrix.os }}
8
strategy:
9
- # fail-fast: false
+ fail-fast: false
10
matrix:
11
os: [ubuntu-latest]
12
node-version:
@@ -28,9 +28,10 @@ jobs:
28
with:
29
node-version: ${{ matrix.node-version }}
30
- name: Update npm?
31
+ if: ${{ matrix.node_version == 'latest' }}
32
run: npm i -g npm
33
- name: Install dependencies
- run: npm ci
34
+ run: type -a npm && npm ci
35
- name: Run test suite
36
run: node sdkdo tests
37
env:
0 commit comments