Skip to content

fix: ts type error (#43) #31

fix: ts type error (#43)

fix: ts type error (#43) #31

Workflow file for this run

name: Lint
on:
push:
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
persist-credentials: false
- name: Setup Node.js
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
with:
node-version: '24.15.0'
package-manager-cache: false
- name: Enable Corepack
run: |
npm install -g corepack@latest --force
corepack enable
- name: Install dependencies
run: pnpm install
- name: Build RSC plugin
run: pnpm build
- name: Run typecheck
run: pnpm typecheck
- name: Run lint
run: pnpm lint