Skip to content

fix(tests): home-permissions was machine-bound — ROOT hardcoded to a … #164

fix(tests): home-permissions was machine-bound — ROOT hardcoded to a …

fix(tests): home-permissions was machine-bound — ROOT hardcoded to a … #164

Workflow file for this run

name: Run Bun Tests
# Trigger workflow on push or pull request
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
steps:
# Checkout your repository (v5: node24 runtime — v4 triggers the
# "Node.js 20 is deprecated" runner warning)
- name: Checkout repository
uses: actions/checkout@v5
# Setup Bun
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.3.9 # pin a known stable version
# Show Bun version only
- name: Bun version
run: bun --version
# Install dependencies
- name: Install dependencies
run: bun install --force
# Type check (TS)
- name: Type check
run: bun run tsc --noEmit
# Run tests with CI flags
- name: Run tests
run: bun test --ci --timeout 120000