-
Notifications
You must be signed in to change notification settings - Fork 11
chore(types): add type check #374
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
72229df
c3fa05e
9011884
7f2a4bb
d580bf1
48d9e99
41c1806
c31dfb9
df7e18e
31550d9
a6ea794
93ab8b2
f8d7361
87e3d4d
e118d92
8157da4
c012364
9c7b359
6a58edd
eb6f7ca
7456b98
674d6b6
5b32cdf
efc79ec
43770bd
84708ed
14fd5a5
508c80e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| name: Typecheck | ||
| permissions: | ||
| contents: read | ||
| on: | ||
| push: | ||
| branches: | ||
| - main | ||
| pull_request: | ||
| branches: | ||
| - main | ||
| jobs: | ||
| test: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: 'lts/*' | ||
| - uses: pnpm/action-setup@v4 | ||
| - name: Install dependencies | ||
| run: pnpm install | ||
|
|
||
| - name: Run TypeScript Type Check | ||
| run: npx nx run-many --target=typecheck --all --skip-nx-cache | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,4 @@ | ||
| { | ||
| "editor.formatOnSave": true | ||
| "editor.formatOnSave": true, | ||
| "files.insertFinalNewline": true | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -13,6 +13,9 @@ export default config([ | |
| ignoredFiles: [ | ||
| '{projectRoot}/eslint.config.{js,cjs,mjs,ts,cts,mts}', | ||
| '{projectRoot}/vite.config.{js,ts,mjs,mts}', | ||
| '{projectRoot}/vitest.config.{js,ts,mjs,mts}', | ||
| '{projectRoot}/webpack.config.{js,ts}', | ||
| '{projectRoot}/e2e/**/*', | ||
| ], | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🤔What's the problem that makes us have to exclude them from ESLint? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These files and directories are excluded from ESLint dependency checks because they contain special syntax or test resources that can easily cause false positives or meaningless dependency check errors. |
||
| }, | ||
| ], | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,10 +9,31 @@ | |
| "@api7/adc-sdk": "workspace:*", | ||
| "@types/express": "^5.0.3", | ||
| "@types/supertest": "^6.0.3", | ||
| "supertest": "^7.1.4" | ||
| "supertest": "^7.1.4", | ||
| "vitest": "^3.0.0", | ||
| "@nx/webpack": "21.6.4", | ||
| "webpack": "5.101.3", | ||
| "terser-webpack-plugin": "^5.3.14" | ||
| }, | ||
| "dependencies": { | ||
| "express": "^5.1.0", | ||
| "winston": "^3.17.0" | ||
| "winston": "^3.17.0", | ||
| "axios": "^1.13.1", | ||
| "rxjs": "^7.8.1", | ||
| "pluralize": "^8.0.0", | ||
| "listr2": "^8.2.1", | ||
| "commander": "^13.1.0", | ||
| "js-yaml": "^4.1.0", | ||
| "lodash": "^4.17.21", | ||
| "chalk": "^4.1.2", | ||
| "parse-duration": "^1.1.0", | ||
| "qs": "^6.12.1", | ||
| "dotenv": "^16.4.5", | ||
| "zod": "^4.0.10", | ||
| "source-map-support": "^0.5.21", | ||
| "agentkeepalive": "^4.6.0", | ||
| "glob": "^11.0.3", | ||
| "signale": "^1.4.0", | ||
| "@api7/adc-sdk": "workspace:*" | ||
|
Comment on lines
+20
to
+37
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It should be included in https://nx.dev/docs/concepts/typescript-project-linking#set-up-package-manager-workspaces There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. only |
||
| } | ||
| } | ||
Uh oh!
There was an error while loading. Please reload this page.