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 5d8d433 commit 2a3f4b6Copy full SHA for 2a3f4b6
.github/workflows/playwright-tests.yml
@@ -18,6 +18,11 @@ jobs:
18
- name: Checkout repository
19
uses: actions/checkout@v3
20
21
+ - name: Set up Node.js
22
+ uses: actions/setup-node@v3
23
+ with:
24
+ node-version: '20'
25
+
26
# Step 2: Set up JDK 17 (adjust if you're using a different version)
27
- name: Set up JDK 17
28
uses: actions/setup-java@v3
@@ -47,6 +52,9 @@ jobs:
47
52
restore-keys: |
48
53
${{ runner.os }}-maven
49
54
50
- # Step 4: Run Maven to execute Playwright tests
55
+ - name: Install Playwright dependencies
56
+ run: npx playwright install-deps
57
58
+ # Step 6: Run Maven to execute Playwright tests
51
59
- name: Run Playwright Tests
- run: mvn verify
60
+ run: mvn verify
0 commit comments