Skip to content

Commit 6f20792

Browse files
aledlieclaude
andcommitted
fix(ci): use 127.0.0.1 instead of localhost for Jekyll server
Jekyll binds to 127.0.0.1 but wait-on was checking localhost. In CI environments these may not resolve the same way. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 07c55f8 commit 6f20792

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,12 @@ jobs:
5050
- name: Start Jekyll server for performance tests
5151
run: |
5252
bundle exec jekyll serve &
53-
npx wait-on http://localhost:4000 --timeout 60000
53+
npx wait-on http://127.0.0.1:4000 --timeout 60000
5454
5555
- name: Run performance tests
5656
run: npm run test:performance
5757
env:
58-
BASE_URL: http://localhost:4000
58+
BASE_URL: http://127.0.0.1:4000
5959
CI: true
6060

6161
- name: Upload test results

0 commit comments

Comments
 (0)