Skip to content

chore(deps): bump the github-actions group across 1 directory with 7 updates #546

chore(deps): bump the github-actions group across 1 directory with 7 updates

chore(deps): bump the github-actions group across 1 directory with 7 updates #546

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@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run lint
- run: npm test