Skip to content

Update dependency @types/node to v25.9.5 #361

Update dependency @types/node to v25.9.5

Update dependency @types/node to v25.9.5 #361

Workflow file for this run

name: PR Checks
on:
pull_request:
types: [opened, synchronize, reopened]
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
- uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6.0.9
name: Install pnpm
with:
standalone: true
run_install: false
- name: Install Node.js
run: pnpm env use --global 24
shell: bash
- name: Install dependencies
run: pnpm install
- name: Typecheck
run: pnpm typecheck
- name: Lint
run: pnpm lint
- name: Format check
run: pnpm fmt
- name: Build
run: pnpm build
typo-check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Check spelling
uses: crate-ci/typos@37bb98842b0d8c4ffebdb75301a13db0267cef89 # v1.47.2
schema-check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
with:
fetch-depth: 0
- name: Validate markdown schema
uses: jackchuka/mdschema@086ba257175c593bf01e50207a7626cb17c3c28b # v0.13.2
with:
files: "README.md docs/**/*.md"
schema: "schema.yml"