Skip to content

Release 2.5.0

Release 2.5.0 #22

Workflow file for this run

name: Node.js CI
on:
pull_request:
branches: ['main']
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- run: npm ci
- run: tsc --project tsconfig.json
- run: npm test