TypeScript type defintions docs for website #6333
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, pull_request] | |
| permissions: | |
| contents: read # to fetch code (actions/checkout) | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 25 | |
| cache: npm | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: 3.14 | |
| - run: npm run prepare-monorepo | |
| - run: pip install codespell | |
| - run: npx run-s lint-raw codespell | |
| type-definitions: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 25 | |
| cache: npm | |
| - run: npm run prepare-monorepo | |
| - run: npx run-s build-types test-type-definitions-all | |
| karma: | |
| runs-on: windows-2022 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 25 | |
| cache: npm | |
| - run: npm run prepare-monorepo | |
| - run: npx run-s bundle test-unit-karma | |
| bun: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 25 | |
| cache: npm | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: latest | |
| - run: npm run prepare-monorepo | |
| - run: npx run-s bundle test-unit-bun | |
| promises: | |
| strategy: | |
| matrix: | |
| node: | |
| - 20.9 | |
| - 21 | |
| - ^22.5.1 | |
| - 23 | |
| - 24 | |
| - 25 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| cache: npm | |
| - run: npm run prepare-monorepo | |
| - run: npm run test-promises | |
| tests: | |
| strategy: | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| - windows-latest | |
| - macos-latest | |
| node: | |
| - 20.9 | |
| - 21 | |
| - ^22.5.1 | |
| - 23 | |
| - 24 | |
| - 25 | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| cache: npm | |
| - run: npm run prepare-monorepo | |
| - run: npx run-s bundle test-unit-node test-entries test-compat-data test-compat-tools test-builder test-babel-plugin |