This repository was archived by the owner on Apr 18, 2026. It is now read-only.
chore(deps): update all non-major dependencies (#94) #1010
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: [master] | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| merge_group: | |
| branches: [master] | |
| permissions: | |
| contents: read | |
| checks: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24.x | |
| - name: Setup Deno | |
| uses: denoland/setup-deno@v2 | |
| with: | |
| deno-version: v2.x | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version-file: package.json | |
| - name: Install Dependencies | |
| run: bun install --ignore-scripts --frozen-lockfile | |
| - name: Run Code Quality Checks | |
| run: bun check:ci | |
| - name: Bundle | |
| run: bun bundle | |
| - name: Run Tests | |
| run: bun run test |