[ACS-11294] added search indexing check in ACA (#5091)

* [ACS-11294] added search indexing check in ACA

* [ACS-11294] small changes to the script

* [ACS-11293] deleted commander from the script and added .env file check

* [ACS-11294] added search indexing action after deploy ACS

* [ACS-11294] check added to all test suites and deleted hard coded credentials

* [ACS-11294] sonar cloud fixes

* [ACS-11294] search indexing fix 1

* [ACS-11294] review fixes 1

* [ACS-11294] review fixes 2
This commit is contained in:
Adam Świderski
2026-03-23 10:22:17 +01:00
committed by GitHub
parent 9680b46ffa
commit 65c814d75b
5 changed files with 353 additions and 53 deletions
+6
View File
@@ -49,3 +49,9 @@ runs:
fi
fi
echo "TAG_NPM=${TAG_NPM}" >> $GITHUB_ENV
- name: node
uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
cache: 'npm'
+8 -21
View File
@@ -36,11 +36,8 @@ jobs:
with:
fetch-depth: 0
- name: node
uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
cache: 'npm'
- uses: ./.github/actions/setup
- run: npm ci
- name: upload npm logs
@@ -67,11 +64,6 @@ jobs:
with:
fetch-depth: 2
- name: node
uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
cache: 'npm'
- uses: ./.github/actions/before-install
- run: npm ci
- name: upload npm logs
@@ -99,11 +91,6 @@ jobs:
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: node
uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
cache: 'npm'
- uses: ./.github/actions/before-install
- run: npm ci
- name: upload npm logs
@@ -181,12 +168,6 @@ jobs:
with:
fetch-depth: 2
- name: node
uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Deploy local ACS
id: deploy-local-acs
uses: ./.github/actions/deploy-local-acs
@@ -220,6 +201,12 @@ jobs:
- name: Before e2e
uses: ./.github/actions/before-e2e
- name: Check Search Indexing
continue-on-error: true
run: npm run ci:check-search-indexing
env:
ADMIN_PASSWORD_SCRIPT: ${{ env.ADMIN_PASSWORD }}
- name: Before playwright (Chromium for PR)
if: ${{ github.event_name == 'pull_request' }}
run: npm run ci:playwright:install
+1 -31
View File
@@ -60,11 +60,7 @@ jobs:
with:
fetch-depth: 0
- name: node
uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
cache: 'npm'
- uses: ./.github/actions/setup
- run: npm ci
- run: npm run affected:lint -- --base=origin/develop
- run: npm run stylelint
@@ -86,11 +82,6 @@ jobs:
with:
fetch-depth: 0
- name: node
uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
cache: 'npm'
- uses: ./.github/actions/before-install
- run: npm ci
- run: npm run affected:test -- --browsers=ChromeHeadless --watch=false $TEST_OPTS --base=origin/develop
@@ -109,11 +100,6 @@ jobs:
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Setup node
uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
cache: 'npm'
- uses: ./.github/actions/setup
with:
npm_tag: ${{ inputs.npm-tag }}
@@ -146,11 +132,6 @@ jobs:
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Setup node
uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
cache: 'npm'
- uses: ./.github/actions/setup
with:
npm_tag: ${{ inputs.npm-tag }}
@@ -183,11 +164,6 @@ jobs:
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Setup node
uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
cache: 'npm'
- uses: ./.github/actions/setup
with:
npm_tag: ${{ inputs.npm-tag }}
@@ -222,12 +198,6 @@ jobs:
with:
fetch-depth: 2
- name: Setup node
uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
cache: 'npm'
- uses: ./.github/actions/setup
with:
npm_tag: ${{ inputs.npm-tag }}