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 ba9a8e2 commit 0bb2e70Copy full SHA for 0bb2e70
1 file changed
.github/workflows/test.yml
@@ -53,9 +53,18 @@ jobs:
53
cache: npm
54
55
- name: Install dependencies
56
+ shell: bash
57
run: |
- npm install -D typescript@^4 jest@^27 memfs@^3 --ignore-scripts
58
- npm install --ignore-scripts
+ rm -f package-lock.json
59
+
60
+ npm config set progress false
61
62
+ if [ "${{ matrix.node-version }}" = "10.x" ]; then
63
+ yarn add -D typescript@^4 jest@^27 memfs@^3 --ignore-scripts --ignore-engines
64
+ else
65
+ npm install -g npm@7
66
+ npm install -D typescript@^4 jest@^27 memfs@^3 --ignore-scripts --no-audit --prefer-offline --no-save --no-package-lock
67
+ fi
68
if: matrix.node-version == '10.x' || matrix.node-version == '12.x' || matrix.node-version == '14.x' || matrix.node-version == '16.x'
69
70
0 commit comments