Skip to content

Commit

Permalink
fix: fixed bad var resolving; feat: added regression tests to pr open
Browse files Browse the repository at this point in the history
  • Loading branch information
cpberg committed Dec 29, 2024
1 parent 1557263 commit 2cd0d58
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/e2e-regression-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,14 +94,14 @@ jobs:
working-directory: tests

- uses: actions/upload-artifact@v4
if: failure() || ${{inputs.show_artifact}}
if: failure() || inputs.show_artifact
with:
name: ${{matrix.test}}-${{matrix.browser}} screenshot
path: tests/cypress/screenshots/
if-no-files-found: ignore # 'warn' or 'error' are also available, defaults to `warn`

- uses: actions/upload-artifact@v4
if: failure() || ${{inputs.show_artifact}}
if: failure() || inputs.show_artifact
with:
name: ${{matrix.test}}-${{matrix.browser}} video
path: tests/cypress/videos/
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/pr-open.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,3 +81,11 @@ jobs:
secrets: inherit
with:
tag: ${{ needs.vars.outputs.pr }}

e2e-regression-tests:
name: E2E Regression Tests
needs: [vars, deploys-dev]
uses: .github/workflows/e2e-regression-tests.yml
secrets: inherit
with:
target: ${{ needs.vars.outputs.pr }}

0 comments on commit 2cd0d58

Please sign in to comment.