fix: add missing checkout in frontend workflow#42
Merged
Conversation
63d6328 to
c49ccea
Compare
- add missing checkout in reusables frontend workflow fix #41
c49ccea to
4833c9f
Compare
🛡️ PR Quality Check Summary✅ PR Title: Passed (Length: 46/75, Format: OK). 🎉 All checks passed! |
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.
目的
Prettier 設定
jpcorrect-frontend 根目錄下有 .prettierrc。
判斷邏輯:共用的 setup-prettier.sh 會檢查 if [ ! -f ".prettierrc" ] ...。
結果:腳本會發現 .prettierrc 存在,因此輸出 Prettier config already exists, skipping creation.,並使用注入的配置。
ESLint 設定
jpcorrect-frontend 根目錄下有 eslint.config.mjs。
判斷邏輯:共用的 setup-eslint.sh 會檢查 ... && [ ! -f "eslint.config.mjs" ]。
結果:腳本會發現 eslint.config.mjs 存在,因此跳過預設注入,使用你注入的配置。
方法/實作說明
補上缺失的 frontend checkout
其他 workflow 都已經正常運作,只有 frontend 缺失
關聯 Issue
fix #41
附註