pipeline { agent any stages { stage('Install dependencies') { steps { sh 'npm ci' } } stage('Run Playwright tests') { steps { sh 'npx playwright install' sh 'npx playwright test' } } } }