diff options
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/deploy.yml | 11 | ||||
| -rw-r--r-- | .github/workflows/test.yml | 8 |
2 files changed, 9 insertions, 10 deletions
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 296323c..1321bdc 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -12,16 +12,15 @@ jobs: - name: Checkout uses: actions/checkout@v6 - name: Setup Node - uses: actions/setup-node@v6 + uses: oven-sh/setup-bun@v2 with: - node-version: 20 - cache: 'npm' + bun-version: latest - name: Install Dependencies - run: npm install + run: bun install - name: Build Project - run: npm run build + run: bun run build - name: Run Tests - run: npm test + run: bun test - name: Deploy 🚀 uses: JamesIves/github-pages-deploy-action@v4.7.6 with: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5a1a8e7..e7d8e6d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,10 +9,10 @@ jobs: - name: Checkout uses: actions/checkout@v6 - name: Setup Node - uses: actions/setup-node@v6 + uses: oven-sh/setup-bun@v2 with: - node-version: 20 + bun-version: 1.3.5 - name: Install Dependencies - run: npm install + run: bun install - name: Run Tests - run: npm test + run: bun test |
