Skip to content

Commit

Permalink
Tweak Docs Build Workflow (#1250)
Browse files Browse the repository at this point in the history
* revert npm behaviour, ignoring peer depedencies

* tweak npm i to npm ci
  • Loading branch information
sapiderman authored Mar 12, 2024
1 parent ca5c3ac commit 4b43bcb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
node-version: 20.x

- name: 📥 Install deps
run: npm install --legacy-peer-deps
run: npm ci --legacy-peer-deps

- name: 👷‍♂️ Build
run: npm run build
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
node-version: 20.x

- name: 📥 Install deps
run: npm ci
run: npm ci --legacy-peer-deps

- name: 👷‍♂️ Build
run: npm run build
Expand Down

0 comments on commit 4b43bcb

Please sign in to comment.