fix: move form end component to top #10922
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Playwright Tests | |
| on: | |
| push: | |
| branches-ignore: | |
| - stg | |
| - stg-alt | |
| - stg-alt2 | |
| - stg-alt3 | |
| - uat | |
| pull_request: | |
| types: [opened, reopened] | |
| branches-ignore: | |
| - stg | |
| - stg-alt | |
| - stg-alt2 | |
| - stg-alt3 | |
| - uat | |
| jobs: | |
| setup: | |
| timeout-minutes: 10 | |
| runs-on: ubuntu-latest | |
| env: | |
| AWS_SDK_JS_SUPPRESS_MAINTENANCE_MODE_MESSAGE: 1 | |
| DD_TAGS: layer:e2e | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Build | |
| env: | |
| NODE_OPTIONS: --max-old-space-size=4096 | |
| VITE_APP_FORMSG_SDK_MODE: 'test' | |
| run: npm run build | |
| - name: Cache build artifacts | |
| uses: actions/cache/save@v3 | |
| with: | |
| path: | | |
| node_modules | |
| frontend/node_modules | |
| shared/node_modules | |
| dist | |
| frontend/dist | |
| shared/dist | |
| serverless/virus-scanner/build | |
| serverless/virus-scanner-guardduty/build | |
| .next | |
| frontend/.next | |
| shared/.next | |
| key: ${{ runner.os }}-build-${{ github.sha }} | |
| test: | |
| needs: setup | |
| timeout-minutes: 30 | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| project: | |
| [ | |
| 'chromium-login', | |
| 'chromium-encrypt-submission', | |
| 'firefox-login', | |
| 'firefox-encrypt-submission', | |
| ] | |
| env: | |
| AWS_SDK_JS_SUPPRESS_MAINTENANCE_MODE_MESSAGE: 1 | |
| DD_TAGS: layer:e2e | |
| SHARD_COUNT: 4 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| - name: Restore build artifacts | |
| uses: actions/cache/restore@v3 | |
| with: | |
| path: | | |
| node_modules | |
| frontend/node_modules | |
| shared/node_modules | |
| dist | |
| frontend/dist | |
| shared/dist | |
| serverless/virus-scanner/build | |
| serverless/virus-scanner-guardduty/build | |
| .next | |
| frontend/.next | |
| shared/.next | |
| key: ${{ runner.os }}-build-${{ github.sha }} | |
| fail-on-cache-miss: true | |
| - name: Configure Datadog Test Visibility | |
| uses: datadog/[email protected] | |
| with: | |
| languages: js | |
| service-name: ${{ secrets.DD_SERVICE }} | |
| api-key: ${{ secrets.DD_API_KEY }} | |
| - name: Install Playwright Browsers | |
| run: npx playwright install --with-deps | |
| - name: Run Playwright tests | |
| env: | |
| NODE_OPTIONS: -r ${{ env.DD_TRACE_PACKAGE }} | |
| run: npx playwright test --project=${{ matrix.project }} | |
| - uses: actions/upload-artifact@v4 | |
| if: always() | |
| with: | |
| name: playwright-report-${{ matrix.project }} | |
| path: playwright-report/ | |
| retention-days: 30 |