Skip to content

feat(gog): add setup-gog.sh script and fix setup references #43

feat(gog): add setup-gog.sh script and fix setup references

feat(gog): add setup-gog.sh script and fix setup references #43

Workflow file for this run

name: CI
on:
push:
branches: [develop, main]
pull_request:
branches: [develop, main]
jobs:
check:
name: Lint & Type Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun install --frozen-lockfile
# Biome: lint + format check in one pass
- run: bun run check
# TypeScript strict type checking (separate from Biome)
- run: bun run typecheck
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun install --frozen-lockfile
- run: bun run build
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun install --frozen-lockfile
- name: Configure git for tests
run: |
git config --global user.email "ci@test.local"
git config --global user.name "CI"
# Unit tests only — eval tasks (RUN_EVAL=true) are excluded by default
- run: bun test