Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -220,14 +220,15 @@
<version>3.1.0</version>
<executions>
<execution>
<id>yarn install build</id>
<id>npm install build</id>
<phase>generate-resources</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>yarn</executable>
<executable>npm</executable>
<arguments>
<argument>run</argument>
<argument>installAndBuild</argument>
</arguments>
<workingDirectory>${project.basedir}/web-report</workingDirectory>
Expand Down
2 changes: 1 addition & 1 deletion web-report/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,5 +72,5 @@ This will build the project and copy static test files from `tests/static` direc
- `build` - Build for production
- `preview` - Preview production build
- `lint` - Run ESLint
- `installAndBuild` - Install dependencies, run tests and build (Yarn only)
- `installAndBuild` - Install dependencies, run tests and build
- `debug` - Build the project and run in debug mode using static test files from `tests/static` directory
Loading