fix: Chrome展開不具合を避けるためNodeを24.15.0に固定#301
Merged
Merged
Conversation
azuchi
approved these changes
Jun 10, 2026
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.
概要
resolves #300
フロントエンドCIのKarmaテストが
Cannot start ChromeHeadlessで失敗する問題を解消する。Node 24.16.0 のリグレッションによりPuppeteerのChrome展開が不完全になることが原因であり、Nodeバージョンを固定して回避する。
Node 24.16.0 上では
extract-zipによる展開が途中で破綻し、chrome実行ファイルが書き出されないままinstallが成功扱い(exit=0)となる。結果としてKarmaが
~/.cache/puppeteer/.../chrome-linux64/chromeを見つけられず起動失敗していた。変更内容
.github/workflows/ci_on_push_pull_request.ymlのテストマトリクスを変更。node-version: [22.x, 24.x]→[22.x, 24.15.0]影響範囲
CI on Push and PullRequest)のみ。検証手順
22.x/24.15.0両方で成功することを確認する。npm run test ... --browsers=ChromeHeadlessCIが成功することを確認する。関連Issue
備考
24.xに戻すことが望ましい