Skip to content

Commit

Permalink
build(web-client): split build and test tasks (#908) (#910)
Browse files Browse the repository at this point in the history
(cherry picked from commit 3037175)

Co-authored-by: Andrew Azores <aazores@redhat.com>
  • Loading branch information
mergify[bot] and andrewazores authored Apr 26, 2022
1 parent d1e9d14 commit 977a301
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -859,9 +859,9 @@
<goal>yarn</goal>
</goals>
<configuration>
<arguments>
install --frozen-lockfile
</arguments>
<arguments>
install --frozen-lockfile
</arguments>
</configuration>
</execution>
<execution>
Expand All @@ -871,7 +871,18 @@
<goal>yarn</goal>
</goals>
<configuration>
<arguments>run build</arguments>
<arguments>run build:notests</arguments>
</configuration>
</execution>
<execution>
<id>yarn run test</id>
<phase>test</phase>
<goals>
<goal>yarn</goal>
</goals>
<configuration>
<arguments>run test</arguments>
<testFailureIgnore>${skipTests}</testFailureIgnore>
</configuration>
</execution>
</executions>
Expand Down

0 comments on commit 977a301

Please sign in to comment.