Skip to content

docs: ADHD-friendly SETUP.md (Cloudflare Access + Twitch); note auto-… #9

docs: ADHD-friendly SETUP.md (Cloudflare Access + Twitch); note auto-…

docs: ADHD-friendly SETUP.md (Cloudflare Access + Twitch); note auto-… #9

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
push:
branches: [main]
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
jobs:
ci:
name: Type-check & Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Bun
uses: oven-sh/setup-bun@v2.1.3
with:
bun-version-file: package.json
- name: Cache bun install
uses: actions/cache@v5
with:
path: ~/.bun/install/cache
key: bun-${{ runner.os }}-${{ hashFiles('bun.lock') }}
restore-keys: |
bun-${{ runner.os }}-
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Type-check
run: bun run check-types
- name: Test
run: bun run test
- name: Build
run: bun run build
env:
# Required by the web app's typed env at build time.
NEXT_PUBLIC_SERVER_URL: https://wolfathon-api.mrdemonwolf.workers.dev