Introduce populate ordered option for populating in series rather than in parallel #3522
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: Typescript Types | |
on: | |
pull_request: | |
paths: | |
- '.github/workflows/tsd.yml' | |
- 'package.json' | |
- 'types/**' | |
- 'test/types/**' | |
push: | |
paths: | |
- '.github/workflows/tsd.yml' | |
- 'package.json' | |
- 'types/**' | |
- 'test/types/**' | |
permissions: | |
contents: read | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
name: Lint TS-Files | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Setup node | |
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 | |
with: | |
node-version: 22 | |
- run: npm install | |
- name: Lint TS-Files | |
run: npm run lint-ts | |
test-ts-types: | |
needs: | |
- lint | |
runs-on: ubuntu-latest | |
name: Test Typescript Types | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Setup node | |
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 | |
with: | |
node-version: 22 | |
- run: npm install | |
- name: Typings | |
run: npm run test-tsd |