Skip to content

Re-introduce tests

Re-introduce tests #69

Workflow file for this run

name: Node CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 24
- name: npm install
run: npm ci
- name: build
run: npm run build
env:
CI: true
- name: lint
run: npm run lint
env:
CI: true