Skip to content

build!: migrated to JavaScript and got package building again #2

build!: migrated to JavaScript and got package building again

build!: migrated to JavaScript and got package building again #2

Workflow file for this run

on:
push:
branches:
- master
pull_request:
types: [assigned, opened, synchronize, reopened, labeled]
workflow_dispatch:
name: ci
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node: [18, 23]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: npm
- run: cd ts
- run: npm ci --engine-strict
- run: npm test