Skip to content

Commit

Permalink
chore: type checking 자동화 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
hwangstar156 committed Oct 23, 2022
1 parent aa7ebcf commit d85125e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: gongseek frontend CI
on:
pull_request:
branches:
- '*'
- "*"
paths:
- frontend/**

Expand All @@ -24,6 +24,9 @@ jobs:
- name: Install node packages
run: yarn install

- name: Type Check
run: tsc

- name: Test
run: yarn test

Expand Down
2 changes: 1 addition & 1 deletion frontend/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": false,
"noEmit": true,
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
Expand Down

0 comments on commit d85125e

Please sign in to comment.