Skip to content

Various tweaks

Various tweaks #287

Workflow file for this run

name: test
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 24
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm install
- run: npm run build --if-present
- run: npm test