-
Notifications
You must be signed in to change notification settings - Fork 2
[codex] ユーザー登録のトランザクション化とE2E追加 #1106
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
Open
hikahana
wants to merge
23
commits into
develop
Choose a base branch
from
codex/transactional-signup-e2e
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
ab116d3
ユーザー登録をトランザクション化しE2Eテストを追加
287990a
E2Eをフロント本体の型チェック対象から除外
74375ef
サインアップの機密情報をリクエストボディで送信
f41e776
リポジトリの認証関連クエリをgoqu化
53fb33e
認証リポジトリのデバッグ出力を削除
4fdcb10
E2EをCIで実行するワークフローを追加
3c022b2
レビュー指摘に基づきsignup検証とエラー伝播を追加
2b75be9
CI向けにE2Eのenvファイル依存を緩和
33638ce
ユーザー削除でTransactionRepositoryを使用
59b14cf
Potential fix for pull request finding
hikahana 943f7ea
Potential fix for pull request finding
hikahana b8890ee
Merge branch 'develop' into codex/transactional-signup-e2e
14e404a
サインアップE2Eのレビュー指摘を反映
4d01a48
E2E用ESLint設定を追加
f8a8adb
signup入力検証をOpenAPIに委譲
930957a
OpenAPIバリデーションをsignupに限定
a1048b9
OpenAPIバリデーション限定理由をコメント化
56573b3
レビュー指摘に基づきE2Eと削除処理を改善
4efc548
mail_authのメール無効化メソッド名を改善
6c44dad
mail_authのクエリ生成を共通化
f456ce5
repositoryのクエリ生成を共通化
c739eee
テストケースの説明コメントを追加
7ff0ab6
レビュー指摘事項を修正
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,36 @@ | ||
| name: E2E | ||
|
|
||
| on: | ||
| workflow_dispatch: | ||
| pull_request: | ||
| branches: | ||
| - develop | ||
| paths: | ||
| - ".github/workflows/e2e.yml" | ||
| - "Makefile" | ||
| - "compose.e2e.yml" | ||
| - "api/**" | ||
| - "mysql/**" | ||
| - "openapi/**" | ||
| - "view/**" | ||
| - "my.cnf" | ||
|
|
||
| concurrency: | ||
| group: e2e-${{ github.workflow }}-${{ github.ref }} | ||
| cancel-in-progress: true | ||
|
|
||
| jobs: | ||
| signup-e2e: | ||
| runs-on: ubuntu-latest | ||
| timeout-minutes: 20 | ||
|
|
||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v4 | ||
|
|
||
| - name: Run E2E | ||
| run: make run-e2e | ||
|
|
||
| - name: Cleanup E2E containers | ||
| if: always() | ||
| run: docker compose -f compose.e2e.yml down --volumes --remove-orphans |
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.