Skip to content

Update documentation from submodules #35

Update documentation from submodules

Update documentation from submodules #35

Workflow file for this run

name: Lint
on:
pull_request:
types:
- opened
- reopened
- synchronize
jobs:
pr-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 1
submodules: true
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- run: npm ci
- run: npm run check-format
- run: npm run lint
- run: npm run typecheck