Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
npm is awful
npm/cli#4828
  • Loading branch information
GarboMuffin committed Feb 10, 2024
1 parent 2b0fe25 commit e0bb670
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ jobs:
with:
node-version: 20.x
- name: Install dependencies
run: npm ci
run: |
npm ci
# npm is an awful piece of software
# https://github.com/npm/cli/issues/4828
npm install sharp
- name: Run tests
run: npm test
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"express": "^4.18.2",
"node-fetch": "^2.7.0",
"scratch-translate-extension-languages": "1.0.0",
"sharp": "^0.33.1",
"sharp": "^0.33.2",
"winston": "^3.11.0",
"winston-daily-rotate-file": "^4.7.1"
},
Expand Down

0 comments on commit e0bb670

Please sign in to comment.