Skip to content

chore: upgrade to typescript v5 #145

chore: upgrade to typescript v5

chore: upgrade to typescript v5 #145

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
name: Lint and Tests
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16
cache: 'npm'
- name: NPM Install
run: npm ci
- name: Typecheck
run: npm run check-types
- name: Building
run: npm run build