Skip to content

Commit

Permalink
Added frozen lockfile option on ci and dev workflows (#1012)
Browse files Browse the repository at this point in the history
* Added frozen lockfile option on ci and dev yarn install to fail if the lockfile is out of date

* Testing frozen lockfile with additional dependency not in lockfile

* Removing test
  • Loading branch information
shiftyp authored Sep 27, 2023
1 parent f86a376 commit a8533e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ jobs:
with:
node-version: '16'
cache: 'yarn'

- run: yarn install
- run: yarn install --frozen-lockfile
- run: yarn run playwright install --with-deps
- run: yarn build

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dev-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
node-version: '16'
cache: 'yarn'

- run: yarn install
- run: yarn install --frozen-lockfile
- run: yarn build

- name: Publish dev build
Expand Down

0 comments on commit a8533e5

Please sign in to comment.