Skip to content

Commit

Permalink
ci(yarn): use frozen lockfile to prevent changes
Browse files Browse the repository at this point in the history
  • Loading branch information
spotify-kai committed Sep 20, 2021
1 parent 1822cd4 commit ba5d26f
Show file tree
Hide file tree
Showing 5 changed files with 217 additions and 256 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
with:
node-version: 16.9
- name: yarn install
run: yarn
run: yarn install --frozen-lockfile
- name: yarn build
run: yarn build
- name: lint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
with:
node-version: 16.9
- name: yarn install
run: yarn
run: yarn install --frozen-lockfile
- name: yarn build
run: yarn build
- name: lint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
with:
node-version: 16.9
- name: yarn install
run: yarn
run: yarn install --frozen-lockfile
- name: yarn build
run: yarn build
- name: lint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: yarn install
run: yarn
run: yarn install --frozen-lockfile
- name: yarn build
run: yarn build
- name: lint
Expand Down
Loading

0 comments on commit ba5d26f

Please sign in to comment.