Skip to content

Commit e9a224f

Browse files
committed
fix
1 parent 1b582de commit e9a224f

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.github/actions/pnpm-install/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@ runs:
3030
- name: 📥 Install dependencies
3131
shell: bash
3232
working-directory: ${{ inputs.cwd }}
33-
run: pnpm install --frozen-lockfile
33+
run: pnpm install --no-frozen-lockfile
3434
env:
3535
HUSKY: '0'

.github/workflows/ci-templates.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
${{ runner.os }}-bun-
5555
5656
- name: 📥 Install
57-
run: bun install --frozen-lockfile
57+
run: bun install --no-frozen-lockfile
5858

5959
- name: 🔬 Run Biome & ESLint
6060
run: bun lint

.github/workflows/sync-templates.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
${{ runner.os }}-bun-
4848
4949
- name: 📥 Install
50-
run: bun install --frozen-lockfile
50+
run: bun install --no-frozen-lockfile
5151

5252
- name: 🏗 Build
5353
run: bun run build

apps/www/next.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ const nextConfig = async (phase: string) => {
99
},
1010

1111
experimental: {
12-
cpus: 12,
12+
cpus: 8,
1313
memoryBasedWorkersCount: false,
14-
staticGenerationMaxConcurrency: 12,
14+
staticGenerationMaxConcurrency: 8,
1515
staticGenerationMinPagesPerWorker: 25,
1616
staticGenerationRetryCount: 1,
1717
turbopackFileSystemCacheForDev: true,

templates/plate-playground-template/.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
${{ runner.os }}-nextjs-${{ hashFiles('**/bun.lock') }}-
5151
5252
- name: 📥 Install
53-
run: bun install --frozen-lockfile
53+
run: bun install --no-frozen-lockfile
5454

5555
- name: 🔬 Run Biome & ESLint
5656
run: bun lint

templates/plate-template/.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
${{ runner.os }}-nextjs-${{ hashFiles('**/bun.lock') }}-
5151
5252
- name: 📥 Install
53-
run: bun install --frozen-lockfile
53+
run: bun install --no-frozen-lockfile
5454

5555
- name: 🔬 Run Biome & ESLint
5656
run: bun lint

0 commit comments

Comments
 (0)