fix(website): review the graph doc pages and fix the 3D viewer edge-kind mapping #1376
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: experimental | |
| on: | |
| pull_request: | |
| paths: | |
| - ".github/workflows/experimental.yml" | |
| - "experimental/**" | |
| - "scripts/**" | |
| - "packages/**" | |
| - "package.json" | |
| - "pnpm-lock.yaml" | |
| - "pnpm-workspace.yaml" | |
| concurrency: | |
| group: experimental-${{ github.event_name == 'pull_request' && github.head_ref || github.ref }} | |
| cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
| jobs: | |
| Install: | |
| name: ${{ matrix.name }} | |
| runs-on: ${{ matrix.runner }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - name: linux-x64 | |
| runner: ubuntu-24.04 | |
| - name: linux-arm64 | |
| runner: ubuntu-24.04-arm | |
| - name: darwin-x64 | |
| runner: macos-15-intel | |
| - name: darwin-arm64 | |
| runner: macos-15 | |
| - name: win32-x64 | |
| runner: windows-2025 | |
| - name: win32-arm64 | |
| runner: windows-11-arm | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 24.x | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: packages/ttsc/go.mod | |
| cache-dependency-path: | | |
| packages/ttsc/go.sum | |
| tests/go-transformer/go.mod | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| version: 10.6.4 | |
| - name: Install Dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Verify Installed Tarballs With Bundled Go | |
| run: pnpm run experimental |