Skip to content

chore: bump @biomejs/biome from 1.5.3 to 1.7.3 #222

chore: bump @biomejs/biome from 1.5.3 to 1.7.3

chore: bump @biomejs/biome from 1.5.3 to 1.7.3 #222

Workflow file for this run

name: QA
on: pull_request
permissions:
contents: read
packages: read
jobs:
qa:
name: QA
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
matrix:
node-version: [ '20.x' ]
os: [ ubuntu-latest, macos-latest ]
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Login to GitHub container registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: |
npm ci
- name: Run QA
run: |
npm run qa
- name: Run build
run: |
npm run build