[docs] Detailed type definitions #3881
Workflow file for this run
This file contains 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-ignore: | |
# Renovate branches are always Pull Requests. | |
# We don't need to run CI twice (push+pull_request) | |
- 'renovate/**' | |
pull_request: | |
permissions: {} | |
jobs: | |
# Tests dev-only scripts across all supported dev environments | |
test-dev: | |
# l10nbot does not affect dev scripts. | |
if: ${{ github.actor != 'l10nbot' }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest, windows-latest, ubuntu-latest] | |
steps: | |
- run: echo "${{ github.actor }}" | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
# fetch all tags which are required for `pnpm release:changelog` | |
fetch-depth: 0 | |
- name: Set up pnpm | |
uses: pnpm/action-setup@a3252b78c470c02df07e9d59298aecedc3ccdd6d # v3.0.0 | |
- name: Use Node.js 18.x | |
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 | |
with: | |
node-version: 18 | |
cache: 'pnpm' # https://github.com/actions/setup-node/blob/main/docs/advanced-usage.md#caching-packages-dependencies | |
- run: pnpm install | |
- run: pnpm release:build | |
- run: pnpm validate-declarations |