Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
jozsefdamokos committed Jan 17, 2025
1 parent 1fcf1c4 commit e9a4096
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -124,14 +124,27 @@ jobs:
# working-directory: custom/plugins/${{ github.event.repository.name }}/tests/acceptance
# run: |
# npx pwc --project-id ${{ secrets.CURRENTS_PROJECT_ID }} --key ${{ secrets.CURRENTS_RECORD_KEY }} --ci-build-id ${{ github.repository }}-${{ github.run_id }}-${{ matrix.PLATFORM_BRANCH }}-${{ github.run_attempt }} -- --trace=on
- name: Test before
if: always()
run: |
pwd
ls -la
ls -la custom/plugins/${{ github.event.repository.name }}/tests/acceptance/
- name: Run Playwright
working-directory: custom/plugins/${{ github.event.repository.name }}/tests/acceptance
run: npx playwright test --trace=on
- name: Test
if: always()
run: |
pwd
ls -la
ls -la custom/plugins/${{ github.event.repository.name }}/tests/acceptance/test-results/
ls -la custom/plugins/${{ github.event.repository.name }}/tests/acceptance/playwright-report/
- uses: actions/upload-artifact@v4
if: always()
with:
name: e2e-${{ github.event.repository.name }}-${{ github.sha }}
path:
path: |
custom/plugins/${{ github.event.repository.name }}/tests/acceptance/test-results/
custom/plugins/${{ github.event.repository.name }}/tests/acceptance/playwright-report/
retention-days: 3

0 comments on commit e9a4096

Please sign in to comment.