Skip to content

Commit f5b55bb

Browse files
committed
fix: remove frozen-lockfile from CI workflows for template repository
1 parent cd8fa58 commit f5b55bb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
run: corepack enable
3939

4040
- name: Install dependencies
41-
run: yarn install --frozen-lockfile
41+
run: yarn install
4242

4343
- name: Lint commit messages
4444
if: github.event_name == 'pull_request'

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
run: corepack enable
3131

3232
- name: Install dependencies
33-
run: yarn install --frozen-lockfile
33+
run: yarn install
3434

3535
- name: Run tests
3636
run: yarn test

.github/workflows/semantic-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
run: corepack enable
3535

3636
- name: Install dependencies
37-
run: yarn install --frozen-lockfile
37+
run: yarn install
3838

3939
- name: Run tests
4040
run: yarn test

0 commit comments

Comments
 (0)