Skip to content

feat: added image for the store #63

feat: added image for the store

feat: added image for the store #63

Workflow file for this run

#
# Run playwright e2e tests
#
# Created September 25th, 2023
# @author ywarezk
# @version 0.0.1
# @license MIT
#
name: Playwright E2E
on:
push:
branches: [main]
pull_request:
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Install Playwright Browsers
run: npx playwright install
- name: Run Playwright E2E tests
run: npm run e2e
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30