ci: use --frozen-lockfile
instead of --pure-lockfile
Unlike `--pure-lockfile`, `--frozen-lockfile` will fail if the lockfile needs to be updated.
This commit is contained in:
parent
f277731b3d
commit
910c7303d8
1 changed files with 2 additions and 2 deletions
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
|
@ -34,7 +34,7 @@ jobs:
|
|||
${{ runner.os }}-yarn-
|
||||
- name: Install packages
|
||||
run: |
|
||||
yarn install --pure-lockfile
|
||||
yarn install --frozen-lockfile
|
||||
|
||||
- name: Run linters
|
||||
run: |
|
||||
|
@ -91,7 +91,7 @@ jobs:
|
|||
${{ runner.os }}-yarn-
|
||||
- name: Install packages
|
||||
run: |
|
||||
yarn install --pure-lockfile
|
||||
yarn install --frozen-lockfile
|
||||
|
||||
- name: Setup test database
|
||||
env:
|
||||
|
|
Loading…
Reference in a new issue