chore: bump Biome version to 1.9.0 #142
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: Standard | |
on: [pull_request, push, workflow_dispatch] | |
jobs: | |
test: | |
name: Test | |
strategy: | |
matrix: | |
node-version: [20, 22] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: npm ci | |
- name: Check types | |
run: npm run type:check | |
- name: Check format | |
run: npm run format:check | |
- name: Check lint | |
run: npm run lint:check | |
- name: Test | |
run: npm run test |