From bea7a2f78daa1f262c51acdc0a731310d4772313 Mon Sep 17 00:00:00 2001 From: Yusuke Wada Date: Sun, 28 Jan 2024 18:26:16 +0900 Subject: [PATCH] ci: setup bun --- .github/workflows/ci.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 12cc5fb..4ae5f0e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,10 @@ jobs: - uses: actions/setup-node@v4 with: node-version: 20.x - - run: yarn install --frozen-lockfile - - run: npx playwright install --with-deps - - run: yarn build - - run: yarn test + - uses: oven-sh/setup-bun@v1 + with: + bun-version: 1.0.25 + - run: bun install --no-save + - run: bunx playwright install --with-deps + - run: bun run build + - run: bun run test