Skip to content

Update dependency @types/node to v25.9.1 #219

Update dependency @types/node to v25.9.1

Update dependency @types/node to v25.9.1 #219

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@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6.0.8
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@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Check spelling
uses: crate-ci/typos@cf5f1c29a8ac336af8568821ec41919923b05a83 # v1.45.1
schema-check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
fetch-depth: 0
- name: Validate markdown schema
uses: jackchuka/mdschema@605e0e9aaf9097e1007af51136141a6481527a7b # v0.12.9
with:
files: "README.md docs/**/*.md"
schema: "schema.yml"