docs: ドキュメント最新化(直近1週間の変更を反映) - #729
Merged
Merged
Conversation
- templates/README.md: 新テンプレート追記 - workflows/quality-gate-fallback.yml(CI fallback) - github/policies/(complexity-thresholds, allowed-licenses, severity-definitions) - eslint/eslint.config.mjs(flat config) - biome.json / commitlint.config.js - testing/vitest.config.ts(Vitest) - docs/tool-catalog.md: テストフレームワーク一覧に Vitest を追加 - docs/README.md: templates/ のディレクトリ構造を更新 - script/lib/agents-md-data.sh: templates/ の説明文を更新 - AGENTS.md / CLAUDE.md: auto-generated セクション再生成 Closes #728 Co-authored-by: keito4 <keito4@users.noreply.github.com>
Closed
Owner
|
(aside) |
Contributor
Author
|
Claude finished @keito4's task in 17m 18s —— View job CI失敗の調査・修正
調査結果と修正内容✅ PR #729 自体のCIすべてのCIチェックは合格しています(Quality Gate / Integration Tests / Lint & Format 等)。 ❌ 発見した既存のCI失敗1. 原因: Dockerfileで - RUN bash -c "pnpm setup" \
- && echo "export PNPM_HOME=\"/home/vscode/.local/share/pnpm\"" >> /home/vscode/.bashrc \
- && echo "export PATH=\"\$PNPM_HOME:\$PATH\"" >> /home/vscode/.bashrc \
- && bash -c "source /home/vscode/.bashrc && pnpm add -g supabase"
+ RUN mkdir -p "${PNPM_HOME}" \
+ && echo "export PNPM_HOME=\"${PNPM_HOME}\"" >> /home/vscode/.bashrc \
+ && echo "export PATH=\"\${PNPM_HOME}:\${PATH}\"" >> /home/vscode/.bashrc \
+ && pnpm add -g supabase変更理由:
2. リポジトリ管理者が以下の設定を変更する必要があります:
|
pnpm v11でpnpm setupがexit code 1で失敗するため、 以下の変更を行った: - `pnpm setup`(ENVでパス設定済みのため不要)を削除 - `mkdir -p`でPNPM_HOMEディレクトリを明示的に作成 - `source .bashrc && pnpm add -g`の冗長な呼び出しを削除 - 直接`pnpm add -g supabase`を呼ぶシンプルな構成に変更 この変更によりpnpm 10.xと11.xの両バージョンで Dockerイメージのビルドが成功するようになる。 Closes #728 Co-authored-by: keito4 <keito4@users.noreply.github.com>
Contributor
|
🎉 This PR is included in version 1.112.1 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
github-actions Bot
added a commit
that referenced
this pull request
May 10, 2026
PR #729 (docs: ドキュメント最新化) でmainにマージされた変更を取り込む。 Dockerfileは本PRの変更(ツールバージョン更新 + pnpm v11対応)を保持。 Co-authored-by: keito4 <keito4@users.noreply.github.com>
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.
Summary
templates/README.md: 直近1週間で追加された新テンプレートを全て追記(quality-gate-fallback.yml / github/policies/ / eslint/eslint.config.mjs / biome.json / commitlint.config.js / vitest.config.ts)docs/tool-catalog.md: テストフレームワーク一覧に Vitest を追加docs/README.md:templates/ディレクトリ構造を現状に合わせて更新script/lib/agents-md-data.sh:templates/の説明文を更新(Biome / policies 等を反映)AGENTS.md/CLAUDE.md: auto-generated セクションを再生成対象 PR(1週間の変更)
.github/policies/テンプレート群追加Closes #728
Generated with Claude Code