Skip to content

Commit befd626

Browse files
mydeaclaude
andcommitted
fix(ci): Limit HOME=/root fix to Firefox-capable job only
Only the browser Playwright tests job runs Firefox (via matrix project). All other container jobs (loader tests, Remix, E2E, canary, flaky detector) only run chromium and don't need the HOME override. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 7235bbd commit befd626

3 files changed

Lines changed: 0 additions & 12 deletions

File tree

.github/workflows/build.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -621,8 +621,6 @@ jobs:
621621
- loader_tracing_replay
622622

623623
steps:
624-
- name: Fix HOME for root user
625-
run: echo "HOME=/root" >> $GITHUB_ENV
626624
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
627625
uses: actions/checkout@v6
628626
with:
@@ -835,8 +833,6 @@ jobs:
835833
matrix:
836834
node: [18, 20, 22, 24]
837835
steps:
838-
- name: Fix HOME for root user
839-
run: echo "HOME=/root" >> $GITHUB_ENV
840836
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
841837
uses: actions/checkout@v6
842838
with:
@@ -949,8 +945,6 @@ jobs:
949945
fail-fast: false
950946
matrix: ${{ fromJson(needs.job_e2e_prepare.outputs.matrix) }}
951947
steps:
952-
- name: Fix HOME for root user
953-
run: echo "HOME=/root" >> $GITHUB_ENV
954948
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
955949
uses: actions/checkout@v6
956950
with:
@@ -1077,8 +1071,6 @@ jobs:
10771071
matrix: ${{ fromJson(needs.job_e2e_prepare.outputs.matrix-optional) }}
10781072

10791073
steps:
1080-
- name: Fix HOME for root user
1081-
run: echo "HOME=/root" >> $GITHUB_ENV
10821074
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
10831075
uses: actions/checkout@v6
10841076
with:

.github/workflows/canary.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,8 +145,6 @@ jobs:
145145
label: 'nestjs-microservices (latest)'
146146

147147
steps:
148-
- name: Fix HOME for root user
149-
run: echo "HOME=/root" >> $GITHUB_ENV
150148
- name: Check out current commit
151149
uses: actions/checkout@v6
152150
with:

.github/workflows/flaky-test-detector.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,6 @@ jobs:
5151
# Also skip if PR is from master -> develop
5252
if: ${{ github.base_ref != 'master' && github.ref != 'refs/heads/master' }}
5353
steps:
54-
- name: Fix HOME for root user
55-
run: echo "HOME=/root" >> $GITHUB_ENV
5654
- name: Check out current branch
5755
uses: actions/checkout@v6
5856
- name: Set up Node

0 commit comments

Comments
 (0)