Skip to content

Use TypeScript's variadic tuple types instead of T1,T2,... #3481

Use TypeScript's variadic tuple types instead of T1,T2,...

Use TypeScript's variadic tuple types instead of T1,T2,... #3481

Workflow file for this run

name: Typecheck
on: [push]
jobs:
typecheck:
name: Run TSC type check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Cache node modules
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
path: "**/node_modules"
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
- run: npm ci
- run: npm run typecheck
env:
CI: true