mirror of
https://github.com/Choices-js/Choices.git
synced 2026-03-14 14:45:47 +01:00
Adjust merge.config.ts & browser e2e workflow
This commit is contained in:
parent
1f5dc3c5e7
commit
820c398d33
2 changed files with 7 additions and 3 deletions
6
.github/workflows/browsers.yml
vendored
6
.github/workflows/browsers.yml
vendored
|
|
@ -57,13 +57,17 @@ jobs:
|
|||
|
||||
- name: Run Playwright tests
|
||||
run: npx playwright test --project=${{ matrix.browser }}
|
||||
|
||||
- uses: actions/upload-artifact@v4
|
||||
name: Upload screenshots to GitHub Actions Artifacts
|
||||
if: failure()
|
||||
with:
|
||||
name: screenshot-${{ matrix.os }}-${{ matrix.browser }}
|
||||
path: test-results/**/*.png
|
||||
|
||||
- uses: actions/upload-artifact@v4
|
||||
if: '!cancelled()'
|
||||
name: Upload blob report to GitHub Actions Artifacts
|
||||
if: ${{ !cancelled() }}
|
||||
with:
|
||||
name: blob-report-${{ matrix.os }}-${{ matrix.browser }}
|
||||
path: blob-report/
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
export default {
|
||||
testDir: 'e2e',
|
||||
reporter: [['html', { open: 'never' }]],
|
||||
testDir: 'test-e2e',
|
||||
reporter: [['html', { open: 'never' }], ['github']],
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue