Skip to content

feat: add bun POC for serving web #1177

feat: add bun POC for serving web

feat: add bun POC for serving web #1177

Workflow file for this run

name: Test
on:
pull_request:
branches:
- main
permissions:
contents: read
jobs:
e2e:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v6
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: 24
- name: Install Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.2.18
- name: Cache Bun dependencies
uses: actions/cache@v4
with:
path: ~/.bun/install/cache
key: ${{ runner.os }}-bun-${{ hashFiles('bun.lock') }}
restore-keys: |
${{ runner.os }}-bun-
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Install Playwright browsers
run: bunx playwright install --with-deps chromium
- name: Run e2e tests
env:
TZ: Etc/UTC
GOOGLE_CLIENT_ID: test-client-id
API_BASEURL: http://localhost:3000/api
API_PORT: 3000
run: bun run test:e2e