Skip to content

Commit 8f3f86b

Browse files
authored
chore(ci): use rs check (#306)
1 parent 7ae6d14 commit 8f3f86b

3 files changed

Lines changed: 4 additions & 8 deletions

File tree

.github/workflows/lint.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,8 @@ jobs:
4646
- name: Build Native Binding
4747
run: pnpm --filter rstack build:native
4848

49-
- name: Lint
50-
run: node --run lint
51-
52-
- name: Check Format
53-
run: node --run check:format
49+
- name: Check
50+
run: node --run check
5451

5552
- name: Check Spell
5653
run: node --run check:spell

AGENTS.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,12 @@
1414
corepack enable && pnpm install
1515

1616
# dev checks
17-
pnpm lint
17+
pnpm check
1818
pnpm test
1919

2020
# build / format / spelling
2121
pnpm build
2222
pnpm format
23-
pnpm check:format
2423
pnpm check:spell
2524

2625
# focused work

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"type": "module",
77
"scripts": {
88
"build": "pnpm --filter \"./packages/**\" build",
9-
"check:format": "rs fmt --check",
9+
"check": "rs check --type-check",
1010
"check:spell": "pnpm dlx cspell && heading-case",
1111
"doc": "pnpm --dir website dev",
1212
"doc:build": "node --run build && pnpm --dir website build",

0 commit comments

Comments
 (0)