test(fixtures): ensure .ts
are type checked
#280
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: | |
pull_request: | |
paths-ignore: | |
- "playground/**" | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- "playground/**" | |
jobs: | |
build: | |
strategy: | |
matrix: | |
node: [20] | |
os: [ubuntu-latest, windows-latest, macos-latest, macos-latest-xlarge] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: oven-sh/setup-bun@v2 | |
- name: Install dependencies | |
run: bun install | |
- name: Build the library | |
run: bun run build | |
- name: Run unit tests | |
run: bun test | |
- name: Type check fixtures | |
run: bun run test:fixtures-types | |
# Only trigger deploy if previous steps pass and branch is main | |
- name: Deploy docs | |
if: matrix.os == 'macos-latest' && github.ref == 'refs/heads/main' | |
env: | |
deploy_url: ${{ secrets.RENDER_DEPLOY_HOOK_URL }} | |
run: curl "$deploy_url" |