From a1b714dc0aa203f3587a93643240ad22fb32272a Mon Sep 17 00:00:00 2001 From: kittentm Date: Wed, 13 May 2026 00:06:08 +0200 Subject: [PATCH] ci: use bun instead of pnpm --- .github/workflows/ci.yml | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a960607..5d85751 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,20 +15,16 @@ jobs: - name: Checkout uses: actions/checkout@v6 - - name: Install pnpm - uses: pnpm/action-setup@v6 - - - name: Install node - uses: actions/setup-node@v6 + - name: Setup Bun + uses: oven-sh/setup-bun@v1 with: - node-version: ${{ matrix.node }} - cache: pnpm + bun-version: latest - name: Install dependencies - run: pnpm install + run: bun install - name: Lint - run: pnpm run lint + run: bun run lint - name: Typecheck - run: pnpm run typecheck + run: bun run typecheck \ No newline at end of file