Skip to content

Add typecheck command #181

Add typecheck command

Add typecheck command #181

Workflow file for this run

name: CI
on:
push:
branches: '**'
pull_request:
branches: '**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- run: npm ci
- run: npm run prettier
- run: npm run lint
- run: npm run validate
- run: npm run typecheck
- run: npm test