FCE-2473 / add article on debug option #763
Workflow file for this run
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: Static checks | |
| on: | |
| pull_request: | |
| jobs: | |
| types_and_lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| token: ${{ secrets.SUBMODULES_TOKEN }} | |
| submodules: recursive | |
| - name: init and update submodules | |
| run: git submodule update --init --recursive | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "lts/*" | |
| - name: Use corepack | |
| run: corepack enable | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v6 | |
| - name: Run prepare | |
| run: scripts/prepare.sh | |
| - name: Install node dependencies | |
| run: yarn --immutable | |
| - name: Spellcheck | |
| run: yarn spellcheck | |
| - name: Check formatting | |
| run: yarn format:check | |
| - name: Check types | |
| run: yarn typecheck | |
| - name: Check build | |
| run: yarn build |