Skip to content

Commit

Permalink
Require type-checking to pass for src-testing
Browse files Browse the repository at this point in the history
  • Loading branch information
Methuselah96 committed Sep 17, 2024
1 parent a6fadb5 commit be37e1d
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@ jobs:
working-directory: src-testing
- run: pnpm run build-declarations
working-directory: src-testing
continue-on-error: true
- run: pnpm run format-dprint
working-directory: src-testing
- run: pnpm run check-declarations
Expand Down
2 changes: 1 addition & 1 deletion src-testing/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"main": "",
"scripts": {
"create-src": "node create-src.js",
"build-declarations": "tsc",
"build-declarations": "tsc --declaration true --emitDeclarationOnly true",
"check-declarations": "node declarations.js check",
"copy-declarations": "node declarations.js copy",
"type-check": "tsc --noEmit",
Expand Down
2 changes: 0 additions & 2 deletions src-testing/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
"target": "es2017",
"module": "NodeNext",
"types": [],
"declaration": true,
"emitDeclarationOnly": true,
"forceConsistentCasingInFileNames": true,
"strict": true
}
Expand Down

0 comments on commit be37e1d

Please sign in to comment.