Skip to content

Bump js-yaml from 4.2.0 to 4.3.0 #66

Bump js-yaml from 4.2.0 to 4.3.0

Bump js-yaml from 4.2.0 to 4.3.0 #66

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
# the minimum supported (engines: node >=22) and the current LTS
node-version: [22, 24]
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- run: npx tsc --noEmit
- run: npm test
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 24
cache: npm
- run: npm ci
- run: npm run lint
- run: npm run format:check