Skip to content

backport to typescript 4.3 #9

backport to typescript 4.3

backport to typescript 4.3 #9

Workflow file for this run

name: test
on:
push:
branches:
- "master"
pull_request:
branches:
- master
jobs:
test-node:
runs-on: ubuntu-latest
strategy:
matrix:
node: ["20", "14"]
typescript: ["5.0", "4.3"]
name: TS ${{ matrix.typescript }} Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm run compile
- run: npm install --no-save typescript@${{ matrix.typescript }}
- run: npm run typecheck
- run: npm run test