Skip to content

chore: move stub.js to scripts dir #4

chore: move stub.js to scripts dir

chore: move stub.js to scripts dir #4

Workflow file for this run

name: e2e
on: ['push']
jobs:
build:
runs-on: macOS-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js environment
uses: actions/[email protected]
with:
node-version: '14'
- name: Install
run: |
npm install
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Playwright tests
run: npm run test:e2e
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30