[WIP] feat: offline-only export #1751
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run TypeScript checks | |
on: | |
push: | |
paths: | |
- "**.js" | |
- "**.ts" | |
branches: | |
- main | |
- release | |
pull_request: | |
paths: | |
- "**.js" | |
- "**.ts" | |
branches-ignore: | |
- release | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "21.x" | |
- run: npm install typescript@5.4.3 -g | |
- run: npm install | |
working-directory: frontend | |
- name: Run TypeScript checks on frontend/ | |
run: tsc --noEmit --strictNullChecks false |