Skip to content

ci: fix CI

ci: fix CI #793

Workflow file for this run

name: CI Build & Test
on:
push:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: "true"
- uses: pnpm/action-setup@v4
- name: Use Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 20.x
cache: "pnpm"
# - name: Install D2 For Docs
# run: curl -fsSL https://d2lang.com/install.sh | sh -s --
- uses: oven-sh/setup-bun@v1
with:
bun-version: 1.1.27
- name: Setup
run: pnpm run setup
- name: Install Dependencies
run: pnpm i
- name: Build
run: pnpm build
- name: Test
run: pnpm test