From ac3d99697e2f42ad74586afdb775b6799492e110 Mon Sep 17 00:00:00 2001 From: Akash Rathod <41251473+akashrathod28@users.noreply.github.com> Date: Wed, 10 Dec 2025 14:07:46 +0100 Subject: [PATCH] [ACS-10838]change-Deploy-local-ACS-workflow-step sequence (#4939) * [ACS-10838]change-Deploy-local-ACS-workflow-step sequence * [ACS-10838] added exact commit hash --- .github/workflows/pull-request.yml | 26 +++++++++++++++++--------- 1 file changed, 17 insertions(+), 9 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index d10fcfa2c..6addcc276 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -181,14 +181,8 @@ jobs: node-version-file: '.nvmrc' cache: 'npm' - - uses: ./.github/actions/before-install - - run: npm ci - - - uses: actions/cache/restore@v4 - id: cache - with: - path: ./dist/content-ce - key: cache-dist-${{ github.run_id }} + - name: Free hosted runner disk space + uses: Alfresco/alfresco-build-tools/.github/actions/free-hosted-runner-disk-space@9e15988fdf503869a04a9106daa9b06cfdb1768c # v11.0.0 - name: Deploy local ACS id: deploy-local-acs @@ -200,13 +194,27 @@ jobs: quay_password: ${{ secrets.QUAY_PASSWORD }} acs_deployment_version: 'latest' + - name: Before install + uses: ./.github/actions/before-install + + - name: Install dependencies + run: npm ci + + - name: Restore dist cache + uses: actions/cache/restore@v4 + id: cache + with: + path: ./dist/content-ce + key: cache-dist-${{ github.run_id }} + - name: Before e2e uses: ./.github/actions/before-e2e - name: Before playwright run: npm run ci:playwright:install - - uses: ./.github/actions/run-e2e-playwright + - name: Run e2e playwright + uses: ./.github/actions/run-e2e-playwright with: options: "${{ matrix.e2e-suites.name }}" artifact-name: ${{ matrix.e2e-suites.name }}