We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d8a9ab commit d68b032Copy full SHA for d68b032
1 file changed
.github/workflows/build.yml
@@ -25,7 +25,7 @@ jobs:
25
echo "Building Section 02: Playwright Overview"
26
find section-02-playwright-overview -name pom.xml -not -path "*/target/*" | sort | while read pom; do
27
echo "Building $(dirname $pom)"
28
- mvn clean compile -B -q -f "$pom" || {
+ mvn clean compile -B -f "$pom" || {
29
echo "Failed to compile $pom"
30
exit 1
31
}
@@ -52,7 +52,7 @@ jobs:
52
echo "Building Section 03: Playwright Quickstart"
53
find section-03-playwright-quickstart -name pom.xml -not -path "*/target/*" | sort | while read pom; do
54
55
56
57
58
0 commit comments