diff --git a/.github/workflows/next-ci.yaml b/.github/workflows/next-ci.yaml index e0758393..a4d1ef1b 100644 --- a/.github/workflows/next-ci.yaml +++ b/.github/workflows/next-ci.yaml @@ -85,7 +85,7 @@ jobs: uses: Andrews-McMeel-Universal/cache-next-install@v1 - name: Install Playwright Browsers - run: yarn pretest:integration:ci + run: yarn playwright install - name: Use .env cache action uses: Andrews-McMeel-Universal/get-envs@v1 @@ -106,37 +106,6 @@ jobs: path: playwright-report/ retention-days: 30 - # Required status check - # Checks gzipped page sizes and application links - check-app: - name: Check Links and Size Limit - runs-on: ubuntu-latest - needs: [build] - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Use .env cache action - uses: Andrews-McMeel-Universal/get-envs@v1 - with: - azurecredentials: ${{ secrets.AZURE_CREDENTIALS }} - environment: ${{ inputs.environment }} - - - name: Use cache-next-install action - uses: Andrews-McMeel-Universal/cache-next-install@v1 - - - name: Use cache-next-build action - uses: Andrews-McMeel-Universal/cache-next-build@v1 - - - name: Run Broken Link Checker - id: link-checker-report - continue-on-error: true - run: yarn test:links - - - name: Link Checker Results - if: ${{ failure() }} - run: echo "::warning::${{steps.link-checker-report.outputs.result}}" - - uses: andresz1/size-limit-action@v1 with: github_token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/ui-ci.yaml b/.github/workflows/ui-ci.yaml index 1676001a..ed99cda6 100644 --- a/.github/workflows/ui-ci.yaml +++ b/.github/workflows/ui-ci.yaml @@ -105,37 +105,6 @@ jobs: path: playwright-report/ retention-days: 30 - # Required status check - # Checks gzipped page sizes and application links - check-app: - name: Check Links and Size Limit - runs-on: ubuntu-latest - needs: [build] - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Use .env cache action - uses: Andrews-McMeel-Universal/get-envs@v1 - with: - azurecredentials: ${{ secrets.AZURE_CREDENTIALS }} - environment: ${{ inputs.environment }} - - - name: Use cache-yarn-install action - uses: Andrews-McMeel-Universal/cache-yarn-install@v1 - - - name: Use cache-next-build action - uses: Andrews-McMeel-Universal/cache-next-build@v1 - - - name: Run Broken Link Checker - id: link-checker-report - continue-on-error: true - run: yarn test:links - - - name: Link Checker Results - if: ${{ failure() }} - run: echo "::warning::${{steps.link-checker-report.outputs.result}}" - - uses: andresz1/size-limit-action@v1 with: github_token: ${{ secrets.GITHUB_TOKEN }}