Skip to content

xLink - Fix missing CI test script #11

xLink - Fix missing CI test script

xLink - Fix missing CI test script #11

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
permissions:
contents: read
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
validate:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version:
- "22"
- "24"
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Setup Node
uses: actions/setup-node@v7
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install from lockfile
run: npm ci --no-audit --no-fund --loglevel=error
- name: Tests
run: npm test
- name: Dependency audit
run: npm audit --omit=dev --audit-level=critical