Skip to content

runtime type checking, part 1 #35

runtime type checking, part 1

runtime type checking, part 1 #35

Workflow file for this run

name: Testing
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
integration:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 20
- run: npm install
- run: npm run build
- run: TARGET=modern npm run integration
- run: TARGET=spec npm run integration
- run: TARGET=legacy npm run integration
- run: npm run test