Skip to content

build: replace Yarn/Vitest with Bun #159

build: replace Yarn/Vitest with Bun

build: replace Yarn/Vitest with Bun #159

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
build:
strategy:
matrix:
node: [20]
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v1
- name: Build and test the library
run: |
bun install
bun prepack
bun test:unit
bun test:snapshot
deploy-docs:
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
steps:
- name: Trigger deploy
env:
deploy_url: ${{ secrets.RENDER_DEPLOY_HOOK_URL }}
run: |
curl "$deploy_url"