Skip to content

Lock file maintenance #459

Lock file maintenance

Lock file maintenance #459

Workflow file for this run

name: Lint, Build, Test
on:
workflow_dispatch:
pull_request:
push:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
# node-version: [20.x, 22.x, 24.x, latest]
node-version: [20.x, 22.x, 24.x]
steps:
- uses: actions/checkout@v6
- name: Enable Corepack
run: npm install -g corepack
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: yarn
- run: yarn install --immutable
- run: yarn run biome ci
- run: yarn run build
- run: yarn run test