Skip to content

chore: rename to firesmith #9

chore: rename to firesmith

chore: rename to firesmith #9

Workflow file for this run

name: Test
on:
workflow_dispatch:
push:
branches: [main]
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: oven-sh/setup-bun@v2
- uses: actions/setup-node@v6
with:
node-version: "24"
# The test script runs against the Firestore emulator, which needs a JVM
- uses: actions/setup-java@v5
with:
distribution: temurin
java-version: "21"
- run: bun install --frozen-lockfile
- run: bun run typecheck
- run: bun run lint
- run: bun run fmt:check
- run: bun run test
- run: bun run build