Skip to content

chore: use rslint for type checking (#7495) #16200

chore: use rslint for type checking (#7495)

chore: use rslint for type checking (#7495) #16200

Workflow file for this run

name: Lint
on:
pull_request:
branches: [main]
push:
branches: [main]
workflow_dispatch:
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 1
- name: Install Pnpm
run: |
npm install -g corepack@latest --force
corepack enable
- name: Setup Node.js
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: 24
package-manager-cache: false
- name: Install Dependencies
run: pnpm install
- name: Lint
run: node --run lint
- name: Check Spell
run: node --run check-spell