Skip to content

Adding playwright test to the project #12

Adding playwright test to the project

Adding playwright test to the project #12

Workflow file for this run

name: Playwright Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
playwright:
name: 'Playwright Tests'
runs-on: ubuntu-latest
container:
image: mcr.microsoft.com/playwright:v1.46.1-jammy
defaults:
run:
working-directory: VINScanner
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install dependencies
run: npm ci
# - name: Install Playwright browsers
# run: npx playwright install
- name: Start local server
run: npm run dev &
continue-on-error: true
- name: Wait for server to be ready
run: |
npx wait-on http://localhost:5173/
- name: Run Playwright tests
run: npx playwright test
- name: Upload test results
if: always()
uses: actions/upload-artifact@v4
with:
name: playwright-report
path: VINScanner/playwright-report
env:
HOME: /root