refactor: preset entrypoints #1780
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: pr | |
on: | |
pull_request: {} | |
jobs: | |
format: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup | |
- run: pnpm check:format | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup | |
- run: pnpm build | |
- name: Install Examples Dependencies | |
working-directory: examples | |
run: pnpm install | |
- run: pnpm check:lint | |
publint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup | |
- run: pnpm build | |
- run: pnpm check:publint | |
types: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup | |
- run: pnpm check:types | |
# While we do not deploy website for PRs we still want to know that it can be built. | |
# This catches issues before merging such as broken twoslash examples. | |
website: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup | |
- run: pnpm build | |
- name: Install Website Dependencies | |
working-directory: website | |
run: pnpm install | |
- name: Load Types Cache | |
id: load-types-cache | |
uses: actions/cache/restore@v4 | |
with: | |
path: website/.vitepress/cache/types | |
key: v1-vitepress-types-cache-${{ github.run_id }} | |
restore-keys: | | |
v1-vitepress-types-cache- | |
- name: Build Website | |
working-directory: website | |
run: pnpm build | |
- name: Save Types Cache | |
uses: actions/cache/save@v4 | |
with: | |
path: website/.vitepress/cache/types | |
key: ${{ steps.load-types-cache.outputs.cache-primary-key }} | |
test-unit: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [20, 22] | |
environment: [jsdom, node] | |
name: test unit Node ${{ matrix.node }} @env ${{matrix.environment}} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup | |
with: | |
node-version: ${{ matrix.node }} | |
- run: pnpm build | |
- run: pnpm test:unit -- --environment ${{ matrix.environment }} | |
test-examples: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [20, 22] | |
environment: [jsdom, node] | |
name: test examples Node ${{ matrix.node }} @env ${{matrix.environment}} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup | |
with: | |
node-version: ${{ matrix.node }} | |
- run: pnpm build | |
- name: Install Examples Dependencies | |
working-directory: examples | |
run: pnpm install | |
- run: pnpm test:examples -- --environment ${{ matrix.environment }} | |
test-e2e: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [22] | |
environment: [node] | |
name: test e2e usingNode ${{ matrix.node }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup | |
with: | |
node-version: ${{ matrix.node }} | |
- run: pnpm build | |
- run: pnpm test:e2e |