chore(deps): update dependency bun to v1.1.34 #248
This file contains 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: 🧪 Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
concurrency: | |
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.ref }}' | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 💻 Checkout current code ref | |
uses: actions/checkout@v4 | |
- name: 🟢 Configure Bun on runner | |
uses: oven-sh/setup-bun@v2 | |
with: | |
bun-version: latest | |
- name: 📦 Install package dependencies using lockfile | |
run: bun install --frozen-lockfile | |
- name: 🔨 Run build | |
run: | | |
bun run build | |
bun run compile | |
- name: 🌷 Run format, lint & check with Biome | |
run: | | |
bun run format:ci | |
bun run lint:ci | |
bun run check:ci | |
- name: 🧪 Run tests | |
run: bun run test |