Skip to content

Commit

Permalink
chore: add ctrf reporter and run e2e tests after deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
KrijnL committed Aug 26, 2024
1 parent 49cc8bf commit a64d131
Show file tree
Hide file tree
Showing 6 changed files with 349 additions and 6 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,3 +76,11 @@ jobs:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}

- name: Pause to let invalidation complete
run: |
sleep 180
Run_e2e_Tests:
needs: Invalidate_Cloudfront
uses: .github/workflows/e2e.yml
secrets: inherit
13 changes: 10 additions & 3 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ name: E2E tests
on:
workflow_call:
workflow_dispatch:
push:
branches: [ main, feat/workflow-for-e2e ]
schedule:
- cron: "30 9 * * *"
pull_request:
branches: [ main ]
types: [ opened, synchronize ]

jobs:
test:
timeout-minutes: 60
Expand Down Expand Up @@ -41,3 +42,9 @@ jobs:
e2e/playwright-report/
e2e/test-results/
retention-days: 10
- name: Run CTRF results
if: always()
run: |
npx github-actions-ctrf tests ctrf/ctrf-report.json --pr-comment
env:
GITHUB_TOKEN: {{ secrets.GITHUB_TOKEN }}
1 change: 1 addition & 0 deletions e2e/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
/playwright-report/
/blob-report/
/playwright/.cache/
/ctrf/
324 changes: 323 additions & 1 deletion e2e/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit a64d131

Please sign in to comment.