Skip to content

Commit 0bc5e84

Browse files
committed
Fix a CI issue
1 parent 7fb0582 commit 0bc5e84

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/main.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ jobs:
1919
node-version: 18
2020

2121
- name: Check if package-lock.json is up to date
22-
run: npx --yes package-lock-utd@1.x.x
22+
# For some reason, we cannot use the regular "@1.x.x", because it results in "sh: 1: package-lock-utd: not found". This is most likely caused by the fact that our local package.json (naturally) contains the same name as the package found on npm.
23+
run: npx --yes package-lock-utd@latest
2324

2425
- name: Install dependencies
2526
run: npm ci

0 commit comments

Comments
 (0)