Skip to content

Commit 8d3e20f

Browse files
authored
💚 CI/CDでの依存関係のインストールでLockfileを参照するように修正 (#32)
1 parent 78b8b85 commit 8d3e20f

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/check-pull-request.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
uses: oven-sh/setup-bun@v1
1717

1818
- name: Install dependencies
19-
run: bun install
19+
run: bun install --frozen-lockfile
2020

2121
- name: Check format
2222
run: bun run format:check
@@ -30,7 +30,7 @@ jobs:
3030
uses: oven-sh/setup-bun@v1
3131

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

3535
- name: Check lint
3636
run: bun run lint
@@ -48,7 +48,7 @@ jobs:
4848
uses: oven-sh/setup-bun@v1
4949

5050
- name: Install dependencies
51-
run: bun install
51+
run: bun install --frozen-lockfile
5252

5353
- name: Check build
5454
run: bun run build
@@ -62,7 +62,7 @@ jobs:
6262
uses: oven-sh/setup-bun@v1
6363

6464
- name: Install dependencies
65-
run: bun install
65+
run: bun install --frozen-lockfile
6666

6767
- name: Check type
6868
run: bun run check-type

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
uses: oven-sh/setup-bun@v1
2222

2323
- name: Install Dependencies
24-
run: bun install
24+
run: bun install --frozen-lockfile
2525

2626
- name: Fetch beatmap repository
2727
run: bunx degit RICORA/ricora-beats-beatmap ./dist/assets/beatmaps

bun.lockb

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)