Skip to content

ci: model generated SSR import in Fallow #7

ci: model generated SSR import in Fallow

ci: model generated SSR import in Fallow #7

Workflow file for this run

name: Validate
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
permissions: {}
concurrency:
group: validate-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
BUN_VERSION: "1.3.14"
jobs:
validate:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- name: Setup Bun
uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2
with:
bun-version: ${{ env.BUN_VERSION }}
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Audit complete dependency graph
run: bun audit
- name: Audit production dependencies
run: bun audit --audit-level=high --prod
- name: Static checks, tests, coverage, and Fallow analysis
run: bun run validate
- name: Database tests
run: bun run test:db
- name: Build
run: bun run build