✨ Update tooling and configure CI #1
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: 🚨 Check Quality and Types | |
on: | |
push: | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🛒 Checkout | |
uses: actions/checkout@v4 | |
- name: 🏗️ Setup Biome | |
uses: biomejs/setup-biome@v2 | |
with: | |
version: latest | |
- name: 🎨 Run Biome | |
run: biome ci src | |
- name: 🏗️ Setup Bun | |
uses: oven-sh/setup-bun@v1 | |
- name: 📦 Install Dependencies | |
run: bun install | |
- name: 🏷️ Check Types | |
run: bun typecheck |