Skip to content

Commit 50238e0

Browse files
committed
fix scripts in ci
1 parent 9ff42ce commit 50238e0

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
run: bun run test
3333

3434
- name: validate
35-
run: bun run validate
35+
run: bun run script/validate.ts
3636

3737
- name: license check
38-
run: bun run license-check
38+
run: bun run script/license-check.ts

AGENTS.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
- RSS feed update: `bun run rss`
1010
- Test feeder: `bun run test`
1111
- License checker: `bun run license-check`
12-
- Single test: (no tests in this repo)
1312

1413
## Code Style
1514

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
"scripts": {
66
"dev": "bun run --cwd packages/web dev",
77
"build": "bun run --cwd packages/web build",
8-
"rss": "bun run --cwd script/rss.ts",
9-
"validate": "bun run --cwd script validate.ts",
10-
"license-check": "bun run --cwd script license-check.ts",
8+
"rss": "bun run script/rss.ts",
9+
"validate": "bun run script/validate.ts",
10+
"license-check": "bun run script/license-check.ts",
1111
"test": "bun test"
1212
},
1313
"workspaces": {

0 commit comments

Comments
 (0)