We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f345fb1 commit f0646c2Copy full SHA for f0646c2
.github/workflows/ci.yml
@@ -111,7 +111,7 @@ jobs:
111
node-version: "17.9"
112
113
- name: Node.js 18.x
114
- node-version: "18.13"
+ node-version: "18.14"
115
116
steps:
117
- uses: actions/checkout@v3
@@ -131,7 +131,12 @@ jobs:
131
dirname "$(nvm which ${{ matrix.node-version }})" >> "$GITHUB_PATH"
132
133
- name: Configure npm
134
- run: npm config set shrinkwrap false
+ run: |
135
+ if [[ "$(npm config get package-lock)" == "true" ]]; then
136
+ npm config set package-lock false
137
+ else
138
+ npm config set shrinkwrap false
139
+ fi
140
141
- name: Remove npm module(s) ${{ matrix.npm-rm }}
142
run: npm rm --silent --save-dev ${{ matrix.npm-rm }}
0 commit comments