Skip to content

Update release.yaml #615

Update release.yaml

Update release.yaml #615

Workflow file for this run

name: bun
on:
workflow_dispatch:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions:
contents: read
jobs:
bun-test:
runs-on: ubuntu-latest
timeout-minutes: 30
name: bun
steps:
- uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: '24'
cache: 'pnpm'
- name: Start Services
run: pnpm test:services:start
- name: Install Dependencies
run: pnpm install
- name: Build
run: pnpm build
- name: Run Keyv Tests with Bun
working-directory: core/keyv
run: bun run vitest run --coverage
- name: Run SQLite Tests with Bun
working-directory: storage/sqlite
run: bun run vitest run --coverage