🐢

Bunを使ってGitHub Actionsのワークフローを高速化させる

2024/11/03に公開

これは何

やったこと

ワークフローファイルのパッケージマネージャをcorepack経由のpnpmからBunに変更しました(参考:Bun公式ドキュメント)。変更後のファイルは以下です:

prisma-migrate-deploy.yml
name: Prisma Migrate Deploy
on:
  push:
    paths:
      - prisma/migrations/** # Only run this workflow when migrations are updated
    branches:
      - main

jobs:
  Prisma-Migrate-Deploy:
    runs-on: ubuntu-latest
    environment:
      name: Production
    steps:
      - name: Checkout repo
        uses: actions/checkout@v4
      - name: Install bun
        uses: oven-sh/setup-bun@v1
      - name: Install dependences
        run: bun install
      - name: Apply all pending migrations to the database
        run: npx prisma migrate deploy
        env:
          POSTGRES_PRISMA_URL: ${{ secrets.POSTGRES_PRISMA_URL }}
          POSTGRES_URL_NON_POOLING: ${{ secrets.POSTGRES_URL_NON_POOLING }}

差分:
https://github.com/YasuakiOmokawa/nextjs-dashboard/pull/72/commits/48a844490aedd77af0b6f50a99b2efbd1b4ff218

備考

現時点では個人開発で使ってるので、Bunのバイナリロックファイルの差分管理まではやってません。もしやるなら以下の記事を参考にしたいです
https://zenn.dev/watany/articles/e21a54cf3d56d8

Discussion