Skip to content

Commit

Permalink
💚 CI/CDでの依存関係のインストールでLockfileを参照するように修正 (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
3w36zj6 authored Feb 26, 2024
1 parent 78b8b85 commit 8d3e20f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/check-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
uses: oven-sh/setup-bun@v1

- name: Install dependencies
run: bun install
run: bun install --frozen-lockfile

- name: Check format
run: bun run format:check
Expand All @@ -30,7 +30,7 @@ jobs:
uses: oven-sh/setup-bun@v1

- name: Install dependencies
run: bun install
run: bun install --frozen-lockfile

- name: Check lint
run: bun run lint
Expand All @@ -48,7 +48,7 @@ jobs:
uses: oven-sh/setup-bun@v1

- name: Install dependencies
run: bun install
run: bun install --frozen-lockfile

- name: Check build
run: bun run build
Expand All @@ -62,7 +62,7 @@ jobs:
uses: oven-sh/setup-bun@v1

- name: Install dependencies
run: bun install
run: bun install --frozen-lockfile

- name: Check type
run: bun run check-type
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
uses: oven-sh/setup-bun@v1

- name: Install Dependencies
run: bun install
run: bun install --frozen-lockfile

- name: Fetch beatmap repository
run: bunx degit RICORA/ricora-beats-beatmap ./dist/assets/beatmaps
Expand Down
Binary file modified bun.lockb
Binary file not shown.

0 comments on commit 8d3e20f

Please sign in to comment.