Feature/(CI)GitHub ActionsによるCIワークフローの追加#8
Merged
forwardOne merged 6 commits intomainfrom Nov 27, 2025
Merged
Conversation
fix(.gitignore): Pythonのキャッシュファイルの無視設定を修正 refactor(main.py): FastAPIのライフスパン管理を追加
forwardOne
commented
Nov 27, 2025
Owner
Author
forwardOne
left a comment
There was a problem hiding this comment.
チケット駆動のためIssueの利用、テストコードとGithub Actionsのワークフロー追加
| run: pip install -r requirements.txt | ||
| - name: Run tests | ||
| env: | ||
| GEMINI_API_KEY: ${{ secrets.GEMINI_API_KEY }} |
Owner
Author
There was a problem hiding this comment.
secrets を使ってAPIキーを渡すことで、CIでの認証エラーを解決。
| # 以下の"YOUR_API_KEY_HERE"を実際のAPIキーに置き換えてください。 | ||
|
|
||
| # GEMINI_API_KEY="YOUR_API_KEY_HERE" | ||
| # ファイル名を.envに変更して使用してください。 |
Owner
Author
There was a problem hiding this comment.
ユーザー向けに環境変数のテンプレートを追加。
| // @testing-library/jest-dom の拡張アサーションを有効化 | ||
| import '@testing-library/jest-dom'; | ||
|
|
||
| // Mock for window.matchMedia used in use-mobile hook |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
GitHub ActionsによるCIワークフローを追加します。
テストコードは試験的に実装しました。
このワークフローは、
mainブランチへのプッシュまたはプルリクエスト時に、バックエンド(Python/pytest)とフロントエンド(Node.js/Vitest)のテストを自動実行します。Closes #7