Skip to content

chore: release v0.4.0-alpha.2 #497

chore: release v0.4.0-alpha.2

chore: release v0.4.0-alpha.2 #497

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
workflow_call:
permissions:
contents: read
jobs:
test:
name: Run APIOps Tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
# Test against the supported Node range: the >=22 floor (package.json
# engines) and the current Active LTS (24).
node-version: ['22', '24']
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v5
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run lint
- run: npm test