-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI: Track package lock-file in dedicated file
This allows us to remove lock-file from the repo but still track changes centrally in CI.
- Loading branch information
1 parent
092f030
commit e8ecc1a
Showing
5 changed files
with
9 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,6 +32,11 @@ runs: | |
path: '~/.cache/Cypress' | ||
key: cypress-os_${{ runner.os }}-lock_${{ env.cache-hash }} | ||
|
||
- name: Setup package lock-file | ||
shell: bash | ||
run: | | ||
cp pnpm-lock-committed.yaml pnpm-lock.yaml | ||
- name: Pull dependencies | ||
if: ${{ !inputs.frozen-lockfile || inputs.frozen-lockfile == 'false' }} | ||
uses: pnpm/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.