Skip to content

chore: improved ci workflows (#DS-3875) (#1082) #1286

chore: improved ci workflows (#DS-3875) (#1082)

chore: improved ci workflows (#DS-3875) (#1082) #1286

Workflow file for this run

name: E2E tests
on:
push:
branches:
- main
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node
uses: ./.github/workflows/actions/setup-node
- name: Setup test environment
run: yarn run e2e:setup
- name: Run e2e tests
run: yarn run e2e:components
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-report
path: playwright-report/
retention-days: 1