Skip to content

FCE-2473 / add article on debug option #763

FCE-2473 / add article on debug option

FCE-2473 / add article on debug option #763

Workflow file for this run

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