Skip to content

Cleanup and "slimification" of the repository setup, plus various sma… #284

Cleanup and "slimification" of the repository setup, plus various sma…

Cleanup and "slimification" of the repository setup, plus various sma… #284

Workflow file for this run

name: Build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.17.0, 24.4.0]
steps:
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run type-check
- run: npm run build