Skip to content

up to node 20

up to node 20 #876

Workflow file for this run

name: TypeScript Check
on:
push:
branches: [main]
pull_request:
types: [assigned, opened, synchronize, reopened]
jobs:
tsc:
runs-on: ubuntu-latest
strategy:
matrix:
#node-version: [10.x, 12.x, 14.x, 15.x]
node-version: [20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: TypeScript Check
run: ./node_modules/.bin/tsc --project tsconfig.json --noEmit