-
Notifications
You must be signed in to change notification settings - Fork 0
[All] CSpell の導入 #21
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
[All] CSpell の導入 #21
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ご対応ありがとうございます!
一点コメント入れました 🙋
- name: Read .tool-versions | ||
uses: marocchino/tool-versions-action@18a164fa2b0db1cc1edf7305fcb17ace36d1c306 # v1.2.0 | ||
id: versions | ||
- name: Setup bun | ||
uses: oven-sh/setup-bun@4bc047ad259df6fc24a6c9b0f9a0cb08cf17fbe5 # v2.0.1 | ||
with: | ||
bun-version: ${{ steps.versions.outputs.bun }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ここは mise のアクション使うと 1 アクションで実現できます 🙋
https://github.com/jdx/mise-action
- name: Read .tool-versions | |
uses: marocchino/tool-versions-action@18a164fa2b0db1cc1edf7305fcb17ace36d1c306 # v1.2.0 | |
id: versions | |
- name: Setup bun | |
uses: oven-sh/setup-bun@4bc047ad259df6fc24a6c9b0f9a0cb08cf17fbe5 # v2.0.1 | |
with: | |
bun-version: ${{ steps.versions.outputs.bun }} | |
- name: mise action | |
uses: jdx/mise-action@5083fe46898c414b2475087cc79da59e7da859e8 # v2.1.11 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@tatsutakein
これ考えたのですが、余計なもののインストールが走っちゃう気がしてやめました、、!🙏
何か絞る方法があれば教えていただけると助かります🙏
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
あ、なるほど!そこを懸念されていたのですね 🙇
何を気にしているのか次第なところではありますが…!
インストールの時間を気にされているようであれば jdx/mise-action はキャッシュしてくれるのでわりとスムーズにインストールできるかなと思ってます。
単純に使用しないものまでインストールが走ってしまうことを気にされているようであれば現状のままで良い気がします 🙏
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
悩ましいところですが、ひとまずは今のままでいかせてください🙏
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
おけまるです!
決めの問題だと思うので、問題ないように思います 🙆
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ご対応ありがとうございます!
LGTM です 👍
- name: Read .tool-versions | ||
uses: marocchino/tool-versions-action@18a164fa2b0db1cc1edf7305fcb17ace36d1c306 # v1.2.0 | ||
id: versions | ||
- name: Setup bun | ||
uses: oven-sh/setup-bun@4bc047ad259df6fc24a6c9b0f9a0cb08cf17fbe5 # v2.0.1 | ||
with: | ||
bun-version: ${{ steps.versions.outputs.bun }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
おけまるです!
決めの問題だと思うので、問題ないように思います 🙆
レビューありがとうございます! |
Issue
Closes #17
概要
スペルチェックツール(CSpell)を導入し、プルリクエスト時に自動チェックを実行するように設定しました。
詳細
導入したツールと設定
cspell.jsonc
).github/workflows/check-spell.yaml
).tool-versions
から bun のバージョンを読み込み.vscode/extensions.json
)変更の背景
その他