Skip to content

⬆️ Run npx biome migrate --write to bump 'biome.json' from … #492

⬆️ Run npx biome migrate --write to bump 'biome.json' from …

⬆️ Run npx biome migrate --write to bump 'biome.json' from … #492

Workflow file for this run

jobs:
coverage:
name: Check code coverages on Node.js ${{ matrix.node }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node:
- 20
- 22
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 1
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
- name: Upgrade npm
run: npm install npm@latest -g
- name: Setup modules
run: npm ci
- name: Check code coverages
run: npm test
- name: Archive code coverage report
if: ${{ always() }}
uses: actions/upload-artifact@v7
with:
name: code-coverage-report-${{ github.event.repository.name }}-${{ matrix.node }}
path: coverage
name: Coverage
on:
push:
branches:
- main