Skip to content

tweak publish workflow to use fixed node versions #73

tweak publish workflow to use fixed node versions

tweak publish workflow to use fixed node versions #73

Workflow file for this run

name: CI
on:
push:
pull_request:
permissions:
contents: read
jobs:
check:
runs-on: ${{ matrix.os }}
timeout-minutes: 25
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
node: [22]
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
cache: npm
- name: Install dependencies
run: npm ci
- name: Run checks
run: npm run check