Skip to content

init

init #2

Workflow file for this run

name: CI Test
on:
push:
branches: ["main"]
pull_request:
jobs:
test:
name: Node.js ${{ matrix.node-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [18.19, 20.8, 21, 22]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: pnpm install
- run: pnpm exec tsimp --start # Preload the transpiler
- run: pnpm test