build(deps-dev): bump @biomejs/biome from 1.9.3 to 1.9.4 #31
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: Code Quality | |
on: [pull_request] | |
jobs: | |
quality: | |
name: Lint, Format & Organize | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [22.x] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: npm ci | |
- name: Cache node modules | |
uses: actions/cache@v3 | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node- | |
- name: Setup Biome.js | |
uses: biomejs/setup-biome@v2 | |
with: | |
version: latest | |
- name: Run linting | |
run: npm run lint | |
- name: Run docs formating | |
run: npm run format |