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 95fe297 commit a52f486Copy full SHA for a52f486
.github/workflows/ci.yml
@@ -158,7 +158,12 @@ jobs:
158
dirname "$(nvm which ${{ matrix.node-version }})" >> "$GITHUB_PATH"
159
160
- name: Configure npm
161
- run: npm config set shrinkwrap false
+ run: |
162
+ if [[ "$(npm config get package-lock)" == "true" ]]; then
163
+ npm config set package-lock false
164
+ else
165
+ npm config set shrinkwrap false
166
+ fi
167
168
- name: Remove npm module(s) ${{ matrix.npm-rm }}
169
run: npm rm --silent --save-dev ${{ matrix.npm-rm }}
0 commit comments