diff --git a/.github/workflows/deploys.yml b/.github/workflows/deploys.yml index e5795ab..c193687 100644 --- a/.github/workflows/deploys.yml +++ b/.github/workflows/deploys.yml @@ -27,12 +27,10 @@ jobs: - name: Checkout uses: actions/checkout@v4 - name: Setup Node - uses: actions/setup-node@v4 - with: - node-version: 22 - - run: npm install --frozen-lockfile + uses: oven-sh/setup-bun@v2 + - run: bun install --include=dev - name: Build project - run: npm run build-only + run: bun run build-only - name: Setup Pages uses: actions/configure-pages@v4 - name: Upload artifact