Skip to content

feat: add tauri ubuntu integration test run on pull request #52

feat: add tauri ubuntu integration test run on pull request

feat: add tauri ubuntu integration test run on pull request #52

name: Firefox run Integration tests suite with Playwright
on:
pull_request:
branches: [ main ]
jobs:
test:
timeout-minutes: 90
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: npm ci
- name: Build phoenix
run: npm run build
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Playwright integration tests in firefox Attempt 1
id: attempt1
timeout-minutes: 20
continue-on-error: true
run: npm run testIntegFirefox
- name: Run Playwright integration tests in firefox Attempt 2
id: attempt2
if: steps.attempt1.outcome == 'failure'
timeout-minutes: 30
continue-on-error: true
run: npm run testIntegFirefox
- name: Run Playwright integration tests in firefox Attempt 3
id: attempt3
if: steps.attempt2.outcome == 'failure'
run: npm run testIntegFirefox
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30