Skip to content

Commit fe87f61

Browse files
committed
Try to make npm ci work
`npm ci` fails on CI with an error message: ``` npm ERR! code EUSAGE npm ERR! npm ERR! `npm ci` can only install packages when your package.json and package-lock.json or npm-shrinkwrap.json are in sync. Please update your lock file with `npm install` before continuing. npm ERR! npm ERR! Missing: [email protected] from lock file npm ERR! Missing: [email protected] from lock file ``` nodejs/node#46542
1 parent da44985 commit fe87f61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
cp config/test.ci.exs config/test.exs
5858
5959
- run: mix deps.get
60-
- run: npm ci
60+
- run: npm ci --install-links=false
6161
working-directory: assets
6262

6363
- name: Run tests

0 commit comments

Comments
 (0)