Skip to content

fix: reconcile gateway APIs and skip missing association targets #541

fix: reconcile gateway APIs and skip missing association targets

fix: reconcile gateway APIs and skip missing association targets #541

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@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
- uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run lint
- run: npm test