Fix docs titles sidebar scrolling #10986
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: "CI" | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - release | |
| pull_request: | |
| workflow_call: | |
| inputs: | |
| &inputs # This is a YAML "anchor", lets us reuse this same block below | |
| override-npm-package-version: | |
| description: > | |
| If set, overrides the version of npm packages to publish. | |
| Useful for publishing an RC version. | |
| Leading 'v' will be stripped if present. | |
| required: false | |
| type: string | |
| workflow_dispatch: | |
| inputs: *inputs # This is a YAML "alias", reuses the block defined above | |
| concurrency: | |
| group: ci-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| deploy-test: | |
| needs: waspc-build | |
| uses: ./.github/workflows/ci-deploy-test.yaml | |
| secrets: inherit | |
| examples-test: | |
| needs: waspc-build | |
| uses: ./.github/workflows/ci-examples-test.yaml | |
| secrets: inherit | |
| formatting: | |
| uses: ./.github/workflows/ci-formatting.yaml | |
| secrets: inherit | |
| starters-test: | |
| needs: waspc-build | |
| uses: ./.github/workflows/ci-starters-test.yaml | |
| secrets: inherit | |
| tsspec-test: | |
| uses: ./.github/workflows/ci-tsspec-test.yaml | |
| secrets: inherit | |
| libs-test: | |
| uses: ./.github/workflows/ci-libs-test.yaml | |
| secrets: inherit | |
| packages-test: | |
| uses: ./.github/workflows/ci-packages-test.yaml | |
| secrets: inherit | |
| waspc-build: | |
| uses: ./.github/workflows/ci-waspc-build.yaml | |
| secrets: inherit | |
| npm-package-build: | |
| needs: waspc-build | |
| uses: ./.github/workflows/ci-npm-package-build.yaml | |
| secrets: inherit | |
| with: | |
| build-outputs-json: ${{ toJson(needs.waspc-build.outputs) }} | |
| override-npm-package-version: ${{ inputs.override-npm-package-version }} | |
| npm-package-publish: | |
| needs: npm-package-build | |
| uses: ./.github/workflows/ci-npm-package-publish.yaml | |
| npm-package-test: | |
| needs: [npm-package-publish, waspc-build] | |
| uses: ./.github/workflows/ci-npm-package-test.yaml | |
| secrets: inherit | |
| with: | |
| data-files-list: ${{ needs.waspc-build.outputs.data_files_list }} | |
| waspc-test: | |
| uses: ./.github/workflows/ci-waspc-test.yaml | |
| secrets: inherit |