Bump @types/node in /e2e/browser/test-app in the external-types group #13653
Workflow file for this run
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: End-to-end Tests (Node) | |
| on: | |
| push: | |
| # Allow manual triggering, e.g. to run end-to-end tests against Dependabot PRs: | |
| workflow_dispatch: | |
| env: | |
| CI: true | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| e2e-node: | |
| runs-on: ${{ matrix.os }} | |
| environment: | |
| name: ${{ matrix.environment-name }} | |
| continue-on-error: ${{ matrix.experimental }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| node-version: ["20.x", "22.x", "24.x"] | |
| environment-name: ["ESS PodSpaces", "ESS Release-2-3", "ESS Next"] | |
| experimental: [false] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: "npm" | |
| cache-dependency-path: "**/package-lock.json" | |
| - name: Install dependencies | |
| # FIXME: setup-node's caching seems to not restore correctly: https://github.com/actions/setup-node/pull/323/files | |
| # if: steps.setup-node.outputs.cache-hit != 'true' | |
| run: npm ci --ignore-scripts | |
| - # Dependabot cannot access secrets, so it doesn't have a token to authenticate to ESS. | |
| # We want jobs in this workflow to be gating PRs, so the whole matrix must | |
| # run even for dependabot so that the matrixed jobs are skipped, instead | |
| # of the whole pipeline. | |
| if: ${{ github.actor != 'dependabot[bot]' }} | |
| run: npm run test:e2e:node | |
| env: | |
| E2E_TEST_POD: ${{ secrets.E2E_TEST_POD }} | |
| E2E_TEST_IDP: ${{ secrets.E2E_TEST_IDP }} | |
| E2E_TEST_ENVIRONMENT: ${{ matrix.environment-name }} | |
| E2E_TEST_OWNER_CLIENT_ID: ${{ secrets.E2E_TEST_OWNER_CLIENT_ID }} | |
| E2E_TEST_OWNER_CLIENT_SECRET: ${{ secrets.E2E_TEST_OWNER_CLIENT_SECRET }} | |
| E2E_TEST_FEATURE_ACP: ${{ secrets.E2E_TEST_FEATURE_ACP }} | |
| E2E_TEST_FEATURE_ACP_V3: ${{ secrets.E2E_TEST_FEATURE_ACP_V3 }} | |
| E2E_TEST_FEATURE_WAC: ${{ secrets.E2E_TEST_FEATURE_WAC }} | |
| E2E_TEST_FEATURE_PROBLEM_DETAILS: ${{ secrets.E2E_TEST_FEATURE_PROBLEM_DETAILS }} | |
| check: | |
| if: always() | |
| needs: | |
| - e2e-node | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Decide whether the needed jobs succeeded or failed | |
| uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # release/v1 | |
| with: | |
| allowed-skips: e2e-node | |
| jobs: ${{ toJSON(needs) }} |