β¨ Add useful links #25
Workflow file for this run
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'] | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
continue-on-error: ${{ matrix.experimental }} | |
strategy: | |
fail-fast: true | |
matrix: | |
os: [ubuntu-latest] | |
bun: [1.0] | |
experimental: [false] | |
name: π§ͺ Test Sigui's work using Bun-${{ matrix.bun }} under ${{ matrix.os }} | |
steps: | |
- name: π Fetch code | |
uses: actions/checkout@v4 | |
- name: β‘οΈ Setup Bun | |
uses: oven-sh/setup-bun@v1 | |
with: | |
bun-version: ${{ matrix.bun }} | |
- name: βοΈ Install dependencies | |
run: | | |
bun install | |
- name: π± Compile assets | |
run: bun run build | |
- name: β Check types | |
run: bun check |