Skip to content

Commit 09f8f6b

Browse files
committed
Move verification job
1 parent be4f649 commit 09f8f6b

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/app-ci.yaml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,6 @@ jobs:
4444
npm install
4545
npm run build
4646
47-
- name: Verify Indexer project
48-
run: |
49-
echo "Verifying indexer project."
50-
cd ./app/indexer
51-
./mvnw verify
52-
5347
- name: Build Spring Boot App
5448
run: |
5549
echo "Building spring boot app. Environment [${{ steps.set-deploy-env.outputs.DEPLOY_ENVIRONMENT }}]"

.github/workflows/nightly-jobs.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Nightly Jobs
1+
name: Nightly and CICD Jobs
22

33
on:
44
pull_request:
@@ -61,6 +61,12 @@ jobs:
6161
java-version: '17'
6262
cache: 'maven'
6363

64+
- name: Verify Indexer project
65+
run: |
66+
echo "Verifying indexer project."
67+
cd ./app/indexer
68+
./mvnw verify
69+
6470
- name: Build Spring Boot App
6571
run: |
6672
echo "Building Spring Boot app."

0 commit comments

Comments
 (0)