Skip to content

wip - bun docs update #1208

wip - bun docs update

wip - bun docs update #1208

Workflow file for this run

name: CI test suite
on:
pull_request:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
# by default only the current commit is fetched
# but we need more history to be able to compare to main
# TODO: ideally we would just fetch the history between origin/main and the current commit
fetch-depth: 0
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
run_install: false
- name: Use Node.js 22.x
uses: actions/setup-node@v6
with:
node-version: "22.x"
cache: 'pnpm'
- name: Install node deps
run: pnpm i
- name: Enable turborepo build cache
uses: rharkor/[email protected]
# ------------------------------------------------------------
- name: ESLint
run: pnpm run lint
- name: Build libraries
run: pnpm run build:libs
- name: Run tests
run: pnpm run test:ci