Skip to content

Commit

Permalink
CIに型チェックを追加 (#931)
Browse files Browse the repository at this point in the history
* 👷 CIに型チェックを追加

* ➕ vue-tscを導入

* 📝 READMEに型チェックの説明を追記

* 📝 文言を少し変更
  • Loading branch information
MT224244 authored Sep 12, 2022
1 parent 77448d9 commit 15fee8e
Show file tree
Hide file tree
Showing 4 changed files with 474 additions and 6 deletions.
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ jobs:
restore-keys: |
${{ env.cache-version }}-${{ runner.os }}--electron-builder-cache-
- run: npm ci
- run: npm run typecheck
- run: npm run lint
- run: npm run markdownlint
- run: npm run test:unit
Expand Down
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,20 @@ typos
もし誤判定やチェックから除外すべきファイルがあれば
[設定ファイルの説明](https://github.com/crate-ci/typos#false-positives) に従って`_typos.toml`を編集してください。

## 型チェック

TypeScriptの型チェックを行います。
※ 現在チェック方法は2種類ありますが、将来的に1つになります。

```bash
# .tsのみ型チェック
npm run typecheck

# .vueも含めて型チェック
# ※ 現状、大量にエラーが検出されます。
npm run typecheck:vue-tsc
```

## Markdownlint

Markdown の文法チェックを行います。
Expand Down
Loading

0 comments on commit 15fee8e

Please sign in to comment.