Skip to content

fix: Restrict YAML 1.1 boolean strings to their explicit capitalizati… #119

fix: Restrict YAML 1.1 boolean strings to their explicit capitalizati…

fix: Restrict YAML 1.1 boolean strings to their explicit capitalizati… #119

Workflow file for this run

name: TypeScript
on:
pull_request:
branches: [main]
push:
branches: [main]
workflow_dispatch:
jobs:
typescript:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with: { node-version: 20 }
- run: npm ci
- run: npm run build:node
- run: npm run test:types
- run: npm run test:dist:types
- run: npm install --no-save @types/node@14 typescript@4.2
- run: for d in node_modules/@types/*; do [[ $d == *node ]] || rm -r $d; done
- run: npm run test:dist:types
- run: npm install --no-save @types/node@14 typescript@4.0
- run: for d in node_modules/@types/*; do [[ $d == *node ]] || rm -r $d; done
- run: npm run test:dist:types
- run: npm install --no-save @types/node@14 typescript@3.9
- run: for d in node_modules/@types/*; do [[ $d == *node ]] || rm -r $d; done
- run: npm run test:dist:types