Skip to content

Commit

Permalink
Add workaround for browser...
Browse files Browse the repository at this point in the history
  • Loading branch information
tajdeluca committed Jan 1, 2024
1 parent 18f1059 commit d2f37ec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,13 @@ jobs:
run: npm ci
- name: Run Playwright tests for feature
if: ${{ inputs.test_is_against_deployment == false }}
run: npm test
run: HOME=/root npm test
env:
CI: 'anything'
TEST_BASE_URL: ${{ inputs.test_base_url }}
- name: Run Playwright tests
if: ${{ inputs.test_is_against_deployment }}
run: npm test --ignore-scripts
run: HOME=/root npm test --ignore-scripts
env:
CI: 'anything'
TEST_BASE_URL: ${{ inputs.test_base_url }}
Expand All @@ -70,5 +70,5 @@ jobs:
if: always()
with:
name: ${{ inputs.test_report_artifact_name }}
path: playwright-report/
path: test/integration/playwright-report/
retention-days: 30

0 comments on commit d2f37ec

Please sign in to comment.