Skip to content

Typescript) fix errors #80

Typescript) fix errors

Typescript) fix errors #80

Workflow file for this run

# Workflow for checking tsc compile errors
name: Check build+tsc
on:
# Runs for every pull-requests created
pull_request:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
tsc:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Run Build
run: make
- name: Run tsc
run: npx tsc