Skip to content

Commit

Permalink
ci: enable optional devDeps to be installed
Browse files Browse the repository at this point in the history
Signed-off-by: Vinayak Kulkarni <19776877+vinayakkulkarni@users.noreply.github.com>
  • Loading branch information
vinayakkulkarni committed Dec 24, 2023
1 parent f88f574 commit e812522
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
cache-dependency-path: '**/package-lock.json'

- name: Install dependencies 🚀
run: npm ci --prefer-offline --no-audit --omit=optional
run: npm ci --prefer-offline --no-audit

- name: Run build 🏁
run: npm run build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/shipjs-trigger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
cache: 'npm'

- name: Install dependencies 🚀
run: npm ci --prefer-offline --no-audit --omit=optional
run: npm ci --prefer-offline --no-audit

- name: Trigger a release 🥳
run: npx shipjs trigger
Expand Down
2 changes: 1 addition & 1 deletion ship.config.cjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module.exports = {
installCommand: () => 'npm i --prefer-offline --no-audit --omit=optional',
installCommand: () => 'npm i --prefer-offline --no-audit',
publishCommand: () => 'npm publish --tag latest',
};

0 comments on commit e812522

Please sign in to comment.