Skip to content

Merge pull request #1882 from CSCfi/CSCTTV-4092 #1604

Merge pull request #1882 from CSCfi/CSCTTV-4092

Merge pull request #1882 from CSCfi/CSCTTV-4092 #1604

Workflow file for this run

name: Static type check
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: ["18"]
name: TypeScript check
steps:
- uses: actions/checkout@v2
- name: Setup node ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: |
npm ci
- name: Run type checks with TSC
run: |
npm run tsc