Skip to content

Commit

Permalink
test: remove unintended conditional
Browse files Browse the repository at this point in the history
  • Loading branch information
jessesimpson36 committed Jul 5, 2024
1 parent 9ce9766 commit 6e6142d
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/test-c8run.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,27 +30,22 @@ jobs:
run: sleep 120

- uses: actions/setup-node@v4
if: ${{ inputs.run_e2e_tests }}
with:
node-version: 18

- name: Install dependencies
if: ${{ inputs.run_e2e_tests }}
run: npm ci
working-directory: ./c8run/e2e_tests

- name: Install Playwright Browsers
if: ${{ inputs.run_e2e_tests }}
run: npx playwright install --with-deps
working-directory: ./c8run/e2e_tests

- name: Run Playwright tests
if: ${{ inputs.run_e2e_tests }}
run: npx playwright test
working-directory: ./c8run/e2e_tests

- uses: actions/upload-artifact@v4
if: ${{ inputs.run_e2e_tests }}
with:
name: playwright-report
path: ./c8run/e2e_tests/playwright-report
Expand Down

0 comments on commit 6e6142d

Please sign in to comment.