Skip to content

Commit

Permalink
fix: make sure shipjs workflows do not modify package-lock.json (#787)
Browse files Browse the repository at this point in the history
* chore: update package-lock.json

* fix: make sure shipjs workflows do not make changes to package-lock.json
  • Loading branch information
subzero10 committed May 16, 2022
1 parent 2552a5f commit b1568ff
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/shipjs-manual-prepare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
if [ -f "yarn.lock" ]; then
yarn install
else
npm install
npm ci
fi
- run: |
git config --global user.email "github-actions[bot]@users.noreply.github.com"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/shipjs-schedule-prepare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
if [ -f "yarn.lock" ]; then
yarn install
else
npm install
npm ci
fi
- run: |
git config --global user.email "github-actions[bot]@users.noreply.github.com"
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 @@ -23,7 +23,7 @@ jobs:
if [ -f "yarn.lock" ]; then
yarn install
else
npm install
npm ci
fi
- run: npx shipjs trigger
env:
Expand Down
15 changes: 10 additions & 5 deletions package-lock.json

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

0 comments on commit b1568ff

Please sign in to comment.