Skip to content

fix: zoom (again)

fix: zoom (again) #231

Workflow file for this run

name: Static Analysis
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
Typing-and-Linting:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install dependencies
run: npm install
- name: Run TypeScript compiler
run: npm run typecheck
- name: Run Eslint check
run: npm run lint:check