Skip to content

Commit c164135

Browse files
yamadashyclaude
andcommitted
fix(ci): Add missing path triggers for .tool-versions and root sources
- ci-browser.yml: Add .tool-versions to paths so Node version bumps trigger browser lint/test - ci-website.yml: Add src/**, package.json, package-lock.json, and .tool-versions to paths since website-server jobs depend on root repomix build Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent e8a1ce2 commit c164135

2 files changed

Lines changed: 10 additions & 0 deletions

File tree

.github/workflows/ci-browser.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,13 @@ on:
55
branches: [main]
66
paths:
77
- 'browser/**'
8+
- '.tool-versions'
89
- '.github/workflows/ci-browser.yml'
910
pull_request:
1011
branches: [main]
1112
paths:
1213
- 'browser/**'
14+
- '.tool-versions'
1315
- '.github/workflows/ci-browser.yml'
1416
workflow_dispatch:
1517

.github/workflows/ci-website.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,19 @@ on:
55
branches: [main]
66
paths:
77
- 'website/**'
8+
- 'src/**'
9+
- 'package.json'
10+
- 'package-lock.json'
11+
- '.tool-versions'
812
- '.github/workflows/ci-website.yml'
913
pull_request:
1014
branches: [main]
1115
paths:
1216
- 'website/**'
17+
- 'src/**'
18+
- 'package.json'
19+
- 'package-lock.json'
20+
- '.tool-versions'
1321
- '.github/workflows/ci-website.yml'
1422
workflow_dispatch:
1523

0 commit comments

Comments
 (0)