Typecheck e5a4dd9c75b0e2d288095addd22890d9c7b6f44a #26
This file contains hidden or 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: 🧪 Typecheck | |
| run-name: Typecheck ${{github.sha}} | |
| on: | |
| push: | |
| branches: ["**"] | |
| pull_request: | |
| branches: ["**"] | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ">=22" | |
| - name: Check out repository code | |
| uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: npm i | |
| - name: Install typescript | |
| run: npm i -g typescript | |
| - name: Typecheck | |
| run: tsc |