chore: update Bun version to 1.2.13 (#17) #36
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| biome: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout your repository using git | |
| uses: actions/checkout@v4 | |
| - name: Setup toolchain | |
| uses: jdx/mise-action@v2 | |
| - name: Install dependencies | |
| run: bun install --frozen-lockfile | |
| - name: Check using Biome | |
| run: bun run ci | |
| tsc: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout your repository using git | |
| uses: actions/checkout@v4 | |
| - name: Setup toolchain | |
| uses: jdx/mise-action@v2 | |
| - name: Install dependencies | |
| run: bun install --frozen-lockfile | |
| - name: Check using tsc | |
| run: bun run tsc | |
| test: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout your repository using git | |
| uses: actions/checkout@v4 | |
| - name: Setup toolchain | |
| uses: jdx/mise-action@v2 | |
| - name: Install dependencies | |
| run: bun install --frozen-lockfile | |
| - name: Test | |
| run: bun run test | |
| build: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout your repository using git | |
| uses: actions/checkout@v4 | |
| - name: Setup toolchain | |
| uses: jdx/mise-action@v2 | |
| - name: Install dependencies | |
| run: bun install --frozen-lockfile | |
| - name: Build | |
| run: bun run build |