chore(deps-dev): bump the external-types group with 2 updates (#1459) #6178
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: CI | |
| on: [push] | |
| env: | |
| CI: true | |
| jobs: | |
| lint: | |
| uses: ./.github/workflows/reusable-lint.yml | |
| with: | |
| build: true | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| environment: | |
| name: ${{ matrix.environment-name }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| environment-name: ["ESS PodSpaces", "ESS Release-2-3", "ESS Dev-2-4"] | |
| os: [ubuntu-latest] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-node@v5 | |
| with: | |
| node-version: 22 | |
| cache: npm | |
| registry-url: "https://registry.npmjs.org" | |
| - run: npm ci --workspaces | |
| # Running top-level ci should happen after workspaces level, running these | |
| # the other way around results in top-level dependencies (namely, lerna) | |
| # not being installed. | |
| - run: npm ci | |
| - run: npm run build | |
| - run: npx playwright install --with-deps | |
| - # 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:browser | |
| env: | |
| E2E_TEST_USER: ${{ secrets.E2E_TEST_USER }} | |
| E2E_TEST_PASSWORD: ${{ secrets.E2E_TEST_PASSWORD }} | |
| E2E_TEST_IDP: ${{ secrets.E2E_TEST_IDP }} | |
| E2E_TEST_OWNER_CLIENT_ID: ${{ secrets.E2E_TEST_OWNER_CLIENT_ID }} | |
| E2E_TEST_OWNER_CLIENT_SECRET: ${{ secrets.E2E_TEST_OWNER_CLIENT_SECRET }} | |
| E2E_TEST_ENVIRONMENT: ${{ matrix.environment-name }} | |
| - name: Archive browser-based end-to-end test request logs | |
| uses: actions/upload-artifact@v4 | |
| if: failure() | |
| continue-on-error: true | |
| with: | |
| name: playwright-output | |
| path: test-results/ | |
| check: | |
| if: always() | |
| needs: | |
| - lint | |
| - build | |
| 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: build | |
| jobs: ${{ toJSON(needs) }} |