Skip to content

refactor(imports): πŸ‘· organize in proper order #245

refactor(imports): πŸ‘· organize in proper order

refactor(imports): πŸ‘· organize in proper order #245

Workflow file for this run

name: Playwright Tests
on:
pull_request:
branches:
- master
jobs:
run-tests-playwright:
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: Install Playwright Browsers
run: npx playwright install --with-deps
# Run local server
# playwright.config.ts = should run the webServer:{}
- name: Run Playwright tests
run: npx playwright test
- name: Archive test results
uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 7