Skip to content

Commit

Permalink
Use npm i in deploy workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
paulrobertlloyd committed Dec 8, 2023
1 parent 154d20e commit 44ed482
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ jobs:
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Install dependencies
run: npm ci
# Can’t use `npm ci` due to https://github.com/npm/cli/issues/4828
run: |
npm i --package-lock=false
- name: Build with Eleventy
run: npm run-script build
- name: Upload artifact
Expand Down

0 comments on commit 44ed482

Please sign in to comment.