Skip to content

Commit d748f81

Browse files
added --no-frozen-lockfile flag
1 parent 19093b9 commit d748f81

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/api.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
${{ runner.os }}-pnpm-store-
4949
5050
- name: Install dependencies
51-
run: pnpm install --frozen-lockfile
51+
run: pnpm install --no-frozen-lockfile
5252

5353
- name: Lint API
5454
run: pnpm --filter api lint
@@ -86,7 +86,7 @@ jobs:
8686
${{ runner.os }}-pnpm-
8787
8888
- name: Install dependencies
89-
run: pnpm install --frozen-lockfile
89+
run: pnpm install --no-frozen-lockfile
9090

9191
- name: Build API
9292
run: pnpm --filter api build

.github/workflows/client.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
${{ runner.os }}-pnpm-store-
4949
5050
- name: Install dependencies
51-
run: pnpm install --frozen-lockfile
51+
run: pnpm install --no-frozen-lockfile
5252

5353
- name: Lint Client
5454
run: pnpm --filter client lint
@@ -86,7 +86,7 @@ jobs:
8686
${{ runner.os }}-pnpm-
8787
8888
- name: Install dependencies
89-
run: pnpm install --frozen-lockfile
89+
run: pnpm install --no-frozen-lockfile
9090

9191
- name: Build Client
9292
run: pnpm --filter client build

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
${{ runner.os }}-pnpm-store-
4040
4141
- name: Install dependencies
42-
run: pnpm install --frozen-lockfile
42+
run: pnpm install --no-frozen-lockfile
4343

4444
lint-and-test:
4545
needs: setup
@@ -69,7 +69,7 @@ jobs:
6969
${{ runner.os }}-pnpm-
7070
7171
- name: Install dependencies
72-
run: pnpm install --frozen-lockfile
72+
run: pnpm install --no-frozen-lockfile
7373

7474
- name: Lint
7575
run: pnpm turbo run lint
@@ -105,7 +105,7 @@ jobs:
105105
${{ runner.os }}-pnpm-
106106
107107
- name: Install dependencies
108-
run: pnpm install --frozen-lockfile
108+
run: pnpm install --no-frozen-lockfile
109109

110110
- name: Build
111111
run: pnpm turbo run build

0 commit comments

Comments
 (0)