Skip to content
This repository has been archived by the owner on Feb 19, 2025. It is now read-only.

Commit

Permalink
Add bun verify
Browse files Browse the repository at this point in the history
  • Loading branch information
sinclairnick committed Aug 18, 2024
1 parent ff76771 commit d3cffb1
Showing 1 changed file with 24 additions and 1 deletion.
25 changes: 24 additions & 1 deletion .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ on:
- "main"

jobs:
publish:
verify:
name: Verify

runs-on: ubuntu-latest

strategy:
Expand All @@ -30,3 +32,24 @@ jobs:
run: pnpm test
- name: Type check
run: pnpm check

verify-bun:
name: Verify (bun)
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- uses: pnpm/action-setup@v4
with:
version: 9.1.3
- name: Install packages
run: pnpm i
- name: Build packages
run: pnpm build:packages
- name: Run tests
run: bun run test
- name: Type check
run: bun run check

0 comments on commit d3cffb1

Please sign in to comment.