Skip to content

Merge pull request #53 from adyen-examples/store-favourites-in-storage #42

Merge pull request #53 from adyen-examples/store-favourites-in-storage

Merge pull request #53 from adyen-examples/store-favourites-in-storage #42

Workflow file for this run

name: E2E Testing
on:
workflow_dispatch:
push:
branches: [main]
paths-ignore:
- "README.md"
- .gitignore
- LICENSE
pull_request:
branches: [main]
paths-ignore:
- "README.md"
- .gitignore
- LICENSE
jobs:
test:
timeout-minutes: 30
runs-on: ubuntu-22.04 #using a stable version
steps:
- name: Checkout project
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install dependencies
working-directory: ./e2e
run: npm ci
- name: Install Chromium with dependencies
working-directory: ./e2e
run: npx playwright install --with-deps chromium
- name: Run Playwright tests
working-directory: ./e2e
run: npx playwright test