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 44cac43 commit 2bfacacCopy full SHA for 2bfacac
.github/workflows/build.actions.yml
@@ -29,6 +29,8 @@ jobs:
29
with:
30
path: ~/.m2/repository
31
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
32
+ - name: Ensure browsers are installed
33
+ run: mvn exec:java -e -D exec.mainClass=com.microsoft.playwright.CLI -D exec.args="install --with-deps"
34
- name: Build
35
run: |
36
mvn -e -B -DskipTests=true clean package -Dlib -Dacceptance-test -Dcommunity-app
pom.xml
@@ -88,7 +88,12 @@
88
</dependency>
89
</dependencies>
90
</dependencyManagement>
91
-
+ <dependencies>
92
+ <dependency>
93
+ <groupId>io.quarkiverse.playwright</groupId>
94
+ <artifactId>quarkus-playwright</artifactId>
95
+ </dependency>
96
+ </dependencies>
97
<build>
98
<pluginManagement>
99
<plugins>
0 commit comments