Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: changed npm ci to action in order to not use the lockfile #7

Merged
merged 1 commit into from
Jan 21, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
ci: changed npm ci to action in order to not use the lockfile
  • Loading branch information
Renato Pozzi committed Jan 21, 2022
commit ae8456869ac5fdd3306248cc3a20921fc8184c96
14 changes: 12 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,12 @@ jobs:
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- run: npm ci

- name: Download Deps
uses: bahmutov/npm-install@v1
with:
useLockFile: false

- run: npm run test-ci

release:
Expand All @@ -31,7 +36,12 @@ jobs:
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- run: npm ci

- name: Download Deps
uses: bahmutov/npm-install@v1
with:
useLockFile: false

- run: npm run build
- run: npm run semantic-release
env:
Expand Down