Skip to content

fix missing types and jsDocs #173

fix missing types and jsDocs

fix missing types and jsDocs #173

Workflow file for this run

name: CI

Check failure on line 1 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml: Expected mapping end
on:
- push
- pull_request
jobs:
build:
name: Build with tsc
runs-on: ubuntu-latest
continue-on-error: true
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
- run: npm install
- run: npx tsc
test:
name: Test ${{ matrix.node-version }} on ${{ matrix.os }}
continue-on-error: true
runs-on: {{ matrix.os }}
strategy:
fail-fast: false
matrix:
node-version:
- 18
- 20
os:
- ubuntu-latest
- windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm test