fix(deps): update dependency @viz-js/viz to v3.26.0 #14147
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
| # SPDX-FileCopyrightText: Meta Platforms, Inc. and its affiliates | |
| # SPDX-FileCopyrightText: TNG Technology Consulting GmbH <https://www.tngtech.com> | |
| # | |
| # SPDX-License-Identifier: Apache-2.0 | |
| name: Build and E2E Test | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - 'renovate/*' | |
| pull_request: | |
| types: [opened, reopened, synchronize] | |
| workflow_dispatch: | |
| jobs: | |
| build-and-test: | |
| runs-on: ${{ matrix.os }} | |
| if: | | |
| !(github.event_name == 'pull_request' && startsWith(github.head_ref, 'renovate/')) | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| include: | |
| - os: ubuntu-latest | |
| # https://github.com/microsoft/playwright/issues/11932 | |
| E2E: xvfb-run --auto-servernum --server-args="-screen 0 1280x960x24" -- yarn test:e2e:ci | |
| - os: macos-latest | |
| E2E: yarn test:e2e:ci | |
| # We only want to run a single smoketest on macOS-Intel to avoid long pipeline durations | |
| - os: macos-15-intel | |
| E2E: yarn test:e2e:ci --grep "opens Opossum file and shows project as recently opened" | |
| - os: windows-latest | |
| E2E: yarn test:e2e:ci | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| cache: 'yarn' | |
| node-version-file: '.nvmrc' | |
| - run: yarn install --immutable | |
| - run: yarn ship:auto | |
| - run: yarn spdx | |
| - run: ${{ matrix.E2E }} | |
| - uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7 | |
| if: failure() | |
| with: | |
| name: artifacts-${{ matrix.os }} | |
| path: src/e2e-tests/artifacts | |
| retention-days: 30 |