Skip to content

Commit 17520a4

Browse files
committed
install rec
1 parent 4569309 commit 17520a4

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@v4
1515
- uses: oven-sh/setup-bun@v2
16-
- run: bun install --frozen-lockfile
16+
- run: bun install:rec
1717
- run: bun check
1818

1919
# ここでは Biome を使っている。 https://biomejs.dev/ja/recipes/continuous-integration/
@@ -30,5 +30,5 @@ jobs:
3030
steps:
3131
- uses: actions/checkout@v4
3232
- uses: oven-sh/setup-bun@v2
33-
- run: bun install --frozen-lockfile
33+
- run: bun install:rec
3434
- run: bunx prettier . --check

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
"scripts": {
1414
"prepare": "bunx lefthook install",
1515
"generate": "cd view && bun generate && cd ../worker && bun generate",
16-
"check": "cd view && bun check && cd ../worker && bun check"
16+
"check": "cd view && bun check && cd ../worker && bun check",
17+
"install:rec": "bun install --frozen-lockfile && cd view && bun install --frozen-lockfile && cd ../worker && bun install --frozen-lockfile"
1718
},
1819
"peerDependencies": {
1920
"typescript": "^5.0.0"

0 commit comments

Comments
 (0)