Skip to content

Add Julia language support and CI tests #5

Add Julia language support and CI tests

Add Julia language support and CI tests #5

Workflow file for this run

name: CI
on:
push:
branches: [main,julia]
pull_request:
branches: [main,julia]
jobs:
test:
name: Test (Node ${{ matrix.node-version }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest] # windows-latest
node-version: [24, 26]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- name: Build
run: npm run build
- name: Run tests
run: npm test