Skip to content

chore(deps): bump actions/upload-artifact from 4 to 7 #6

chore(deps): bump actions/upload-artifact from 4 to 7

chore(deps): bump actions/upload-artifact from 4 to 7 #6

Workflow file for this run

name: Browser matrix
on:
pull_request:
push:
branches: [main]
permissions:
contents: read
concurrency:
group: browser-${{ github.ref }}
cancel-in-progress: true
jobs:
browser:
strategy:
fail-fast: false
matrix:
browser: [chromium, firefox, webkit]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v7
with:
node-version: 24
cache: npm
- run: npm ci
- run: npx playwright install --with-deps ${{ matrix.browser }}
- run: npx playwright test --project=${{ matrix.browser }}
- if: failure()
uses: actions/upload-artifact@v7
with:
name: playwright-${{ matrix.browser }}
path: playwright-report
retention-days: 7