Skip to content

Commit

Permalink
fix frontend tests
Browse files Browse the repository at this point in the history
  • Loading branch information
spbolton committed Feb 28, 2024
1 parent f06d601 commit ff63202
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/maven-cicd-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,8 @@ jobs:
MAVEN_OPTS: -Xmx2048m
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
Expand Down
6 changes: 5 additions & 1 deletion core-web/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
<git.origin.branch>693a20f296856dcc8dee99a5556ff02acfb9d6ee</git.origin.branch>
<nx.affected.options>--base=${git.origin.branch} --head=HEAD</nx.affected.options>
<pretty.quick.options>--branch=${git.origin.branch}</pretty.quick.options>
<skip.node.compile>false</skip.node.compile>
</properties>

<dependencies>
Expand Down Expand Up @@ -118,6 +119,7 @@
<phase>compile</phase>

<configuration>
<skip>${skip.node.compile}</skip>
<arguments>run nx build dotcms-ui -- ${nx.build.options}</arguments>
</configuration>
</execution>
Expand All @@ -132,6 +134,7 @@
<phase>compile</phase>

<configuration>
<skip>${skip.node.compile}</skip>
<arguments>run nx run dotcms-block-editor:build</arguments>
</configuration>
</execution>
Expand All @@ -146,6 +149,7 @@
<phase>compile</phase>

<configuration>
<skip>${skip.node.compile}</skip>
<arguments>run nx run dotcms-binary-field-builder:build</arguments>
</configuration>
</execution>
Expand All @@ -161,7 +165,7 @@

<configuration>
<skip>${skipTests}</skip>
<arguments>npx nx affected --target=test ${nx.affected.options} --parallel --exclude=${frontend.lint.excluded.projects}</arguments>
<arguments>npx nx affected --target=test ${nx.affected.options} --parallel --color=false --exclude=${frontend.lint.excluded.projects}</arguments>
</configuration>
</execution>
</executions>
Expand Down

0 comments on commit ff63202

Please sign in to comment.