Skip to content

Commit

Permalink
Include type-check in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeyr committed Oct 7, 2024
1 parent bb9a8a2 commit 826d6d2
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ aliases:
name: Check formatting
command: yarn start format.listDifferent

- &type-check
name: Type-check TypeScript
command: yarn run type-check

# Install/update Node modules for renderer package unless existing set of modules is satisfying Yarn.
- &install-package-node-modules
name: Install Node modules with Yarn for renderer package
Expand Down Expand Up @@ -120,6 +124,7 @@ jobs:
- run: *lint-ruby
- run: *lint-js
- run: *format
- run: *type-check

prettier:
docker: *docker-image
Expand Down
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,9 @@ npm-debug.*
yalc.lock

.byebug_history

# IDE
.idea/

# TypeScript
*.tsbuildinfo
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"noImplicitAny": true,
"outDir": "node_package/lib",
"strict": true,
"incremental": true,
"target": "es5"
},
"include": ["node_package/src/**/*"]
Expand Down

0 comments on commit 826d6d2

Please sign in to comment.