Skip to content

Commit

Permalink
ci: fix typechecking for scripts folder
Browse files Browse the repository at this point in the history
  • Loading branch information
haltcase committed Nov 2, 2024
1 parent 6a3c7cf commit 1907b8b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ jobs:
- name: Install dependencies
run: pnpm install

# this is necessary for typechecking the scripts folder
- name: Build and self-link
run: pnpm build && pnpm link .

- name: Check formatting (Prettier)
run: pnpm prettier:check

Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"noEmit": true
},
"exclude": ["node_modules"],
"include": ["**/*.ts", "**/*.js", "**/*.mjs", ".*.js", ".eslintrc.cjs"]
"include": ["src/**/*.ts", ".eslintrc.cjs"]
}

0 comments on commit 1907b8b

Please sign in to comment.