Skip to content

fix: move CNPJ to footer #97

fix: move CNPJ to footer

fix: move CNPJ to footer #97

Workflow file for this run

name: Quality gateway
on:
pull_request:
push:
branches: [main]
concurrency:
group: quality-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
quality:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v6
# Astro requires Node >=22.12.0 (see package.json engines); runners default to Node 20.
- uses: actions/setup-node@v6
with:
node-version-file: ".node-version"
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Sync Astro (content types)
run: bun run typecheck
- name: Lint
run: bun run lint
- name: Format check
run: bun run format:check
- name: Astro check
run: bunx astro check
# INFO: disabled for now
# - name: Unit tests (Vitest)
# run: bun run test
- name: Build
run: bun run build
env:
BASE_URL: "http://localhost:4321"