Files
effect-fc/.gitea/workflows/test-build.yaml
Renovate Bot 86e7952483
All checks were successful
Lint / lint (push) Successful in 13s
Test build / test-build (pull_request) Successful in 50s
Update actions/setup-node action to v6
2025-10-14 12:01:12 +00:00

28 lines
614 B
YAML

name: Test build
run-name: Test build
on:
pull_request:
jobs:
test-build:
runs-on: ubuntu-latest
steps:
- name: Setup Bun
uses: oven-sh/setup-bun@v2
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: "22"
- name: Clone repo
uses: actions/checkout@v5
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Lint TypeScript
run: bun lint:tsc
- name: Lint Biome
run: bun lint:biome
- name: Build
run: bun run build
- name: Pack
run: bun pack