feat(perf): remove imports that bloat bundle #1560
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 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: Build Website | |
working-directory: website | |
run: pnpm build | |
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 | |
- run: pnpm test:examples -- --environment ${{ matrix.environment }} |