Skip to content

Support extends when parsing tsconfig.json file (#1) #35

Support extends when parsing tsconfig.json file (#1)

Support extends when parsing tsconfig.json file (#1) #35

Workflow file for this run

name: ci
on:
pull_request:
branches:
- main
- next
paths-ignore:
- "**.md"
push:
branches:
- main
- next
paths-ignore:
- "**.md"
jobs:
check:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node:
- 18
- 20
- lts/*
- current
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: npm
node-version: ${{ env.node }}
- run: npm ci
- run: npm audit signatures
- run: npm run typecheck
- run: npm run build