Closed r-sugi closed 2 months ago
The latest updates on your projects. Learn more about Vercel for Git ↗︎
Name | Status | Preview | Comments | Updated (UTC) |
---|---|---|---|---|
nextjs-tdd-template_storybook | ✅ Ready (Inspect) | Visit Preview | 💬 Add feedback | Sep 10, 2024 8:12am |
⏱️ Estimated effort to review: 2 🔵🔵⚪⚪⚪ |
🧪 No relevant tests |
🔒 No security concerns identified |
⚡ No key issues to review |
Category | Suggestion | Score |
Best practice |
パスの一貫性を保つために、不要な
___
**パスの先頭にある `./` を削除して、他のワークフローと一貫性を保ちます。**
[.github/workflows/lint.yml [17]](https://github.com/r-sugi/nextjs-tdd-template/pull/191/files#diff-107e910e9f2ebfb9a741fa10b2aa7100cc1fc4f5f3aca2dfe78b905cbd73c0d2R17-R17)
```diff
-- uses: ./.github/workflows/shared/setup-node-modules.yml
+- uses: .github/workflows/shared/setup-node-modules.yml
```
| 9 |
User description
189
PR Type
bug_fix, enhancement
Description
setup-node-modules.yml
in multiple GitHub workflows by adding a leading./
.paths
configuration in the unit-test workflow to remove unnecessary./
prefixes.Changes walkthrough 📝
lint.yml
Correct path for setup-node-modules in lint workflow
.github/workflows/lint.yml
setup-node-modules.yml
by adding a leading./
.storybook.yml
Correct path for setup-node-modules in storybook workflow
.github/workflows/storybook.yml
setup-node-modules.yml
by adding a leading./
.unit-test.yml
Correct path and update paths configuration in unit-test workflow
.github/workflows/unit-test.yml
setup-node-modules.yml
by adding a leading./
.paths
configuration for pull requests.