Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,8 @@ jobs:
- name: Build Native Binding
run: pnpm --filter rstack build:native

- name: Lint
run: node --run lint

- name: Check Format
run: node --run check:format
- name: Check
run: node --run check

- name: Check Spell
run: node --run check:spell
3 changes: 1 addition & 2 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,12 @@
corepack enable && pnpm install

# dev checks
pnpm lint
pnpm check
pnpm test

# build / format / spelling
pnpm build
pnpm format
pnpm check:format
pnpm check:spell

# focused work
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"type": "module",
"scripts": {
"build": "pnpm --filter \"./packages/**\" build",
"check:format": "rs fmt --check",
"check": "rs check --type-check",
"check:spell": "pnpm dlx cspell && heading-case",
"doc": "pnpm --dir website dev",
"doc:build": "node --run build && pnpm --dir website build",
Expand Down