Skip to content

Commit

Permalink
Fix: use npm ci command to ensure no changes to the package's lockfil…
Browse files Browse the repository at this point in the history
…e will be made
  • Loading branch information
vasilen-7DIGIT committed Sep 25, 2022
1 parent e67f6c3 commit 40fbe17
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,12 @@ jobs:
continue-on-error: true
run: npm list
- name: Install dependencies
run: npm install
run: npm ci install
- name: Create Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
#👇 npm token, see https://storybook.js.org/tutorials/design-systems-for-developers/react/en/distribute/ to obtain it
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
npm install --frozen-lockfile
npm run build-lib
npm run release

0 comments on commit 40fbe17

Please sign in to comment.