Skip to content

Commit b689092

Browse files
committed
Updated the nightly build script
1 parent f6fbb0f commit b689092

File tree

1 file changed

+16
-7
lines changed

1 file changed

+16
-7
lines changed

.github/workflows/daily-branch-verification.yml

Lines changed: 16 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,23 @@ jobs:
2121
java-version: '17'
2222
distribution: 'adopt'
2323

24+
- name: Set up Node.js
25+
uses: actions/setup-node@v3
26+
with:
27+
node-version: '20'
28+
2429
# Step 3: Install Maven 3.9.9
25-
- name: Install Maven 3.9.9
26-
run: |
27-
wget https://downloads.apache.org/maven/maven-3/3.9.9/binaries/apache-maven-3.9.9-bin.tar.gz
28-
tar -xvzf apache-maven-3.9.9-bin.tar.gz
29-
sudo mv apache-maven-3.9.9 /opt/maven
30-
echo "export PATH=/opt/maven/bin:$PATH" >> $GITHUB_ENV
31-
30+
- name: Setup Maven Action
31+
32+
with:
33+
checkout-fetch-depth: 0
34+
java-version: 17
35+
java-distribution: temurin
36+
maven-version: 3.9.9
37+
38+
- name: Install Playwright dependencies
39+
run: npx playwright install-deps
40+
3241
- name: Get list of branches
3342
id: get-branches
3443
run: |

0 commit comments

Comments
 (0)