We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d0c72d commit 1361567Copy full SHA for 1361567
.github/workflows/update-package-lock.yaml
@@ -16,13 +16,14 @@ jobs:
16
- uses: actions/checkout@v2
17
- uses: actions/setup-node@v3
18
with:
19
- node-version: 14
+ node-version: 16
20
21
- name: Configure git and update package-lock.json
22
run: |
23
git config user.email "typescriptbot@microsoft.com"
24
git config user.name "TypeScript Bot"
25
- npm install --package-lock-only --ignore-scripts
+ rm package-lock.json
26
+ npm install --package-lock-only --ignore-scripts # This is a no-op if package-lock.json is present.
27
git add -f package-lock.json
28
if git commit -m "Update package-lock.json"; then
29
git push
0 commit comments