We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0472720 commit ee20fc7Copy full SHA for ee20fc7
.github/workflows/copilot-setup-steps.yml
@@ -65,3 +65,13 @@ jobs:
65
66
- name: npm run postinstall
67
run: npm run postinstall
68
+
69
+ - name: Install Playwright browsers (if needed)
70
+ run: |
71
+ if [ -d "node_modules/playwright" ]; then
72
+ echo "Installing Playwright browsers..."
73
+ npx playwright install --with-deps
74
+ else
75
+ echo "Playwright not found, skipping browser installation"
76
+ fi
77
+ continue-on-error: true
0 commit comments