Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 9 additions & 8 deletions .github/workflows/octocov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,17 +47,18 @@ jobs:
run: |
bun install --frozen-lockfile

- name: Lint
run: bun run lint
- parallel:
- name: Lint
run: bun run lint

- name: typecheck
run: bun run typecheck
- name: typecheck
run: bun run typecheck

- name: Test
run: bun run test
- name: Test
run: bun run test

- name: Build
run: bun run build
- name: Build
run: bun run build

- name: Test packaging
run: bun pm pack
Expand Down
17 changes: 9 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,17 +52,18 @@ jobs:
run: |
bun install --frozen-lockfile

- name: Lint
run: bun run lint
- parallel:
- name: Lint
run: bun run lint

- name: typecheck
run: bun run typecheck
- name: typecheck
run: bun run typecheck

- name: Test
run: bun run test
- name: Test
run: bun run test

- name: Build
run: bun run build
- name: Build
run: bun run build

- name: Mark workspace as a safe Git directory
if: matrix.node-version == '24.x'
Expand Down
Loading