Skip to content

fix: gate postgis healthcheck on password sync to close startup race #44

fix: gate postgis healthcheck on password sync to close startup race

fix: gate postgis healthcheck on password sync to close startup race #44

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
permissions:
contents: read
jobs:
ci:
name: lint / types / test
runs-on: ubuntu-latest
timeout-minutes: 25
env:
TURBO_TELEMETRY_DISABLED: 1
steps:
- uses: actions/checkout@v6
with:
# Needed so commitlint can walk the PR's commit range.
# Quoted because `&& 0 || 1` short-circuits past the falsy 0 and always returns 1.
fetch-depth: ${{ github.event_name == 'pull_request' && '0' || '1' }}
- uses: pnpm/action-setup@v6
- uses: actions/setup-node@v6
with:
node-version-file: .nvmrc
cache: pnpm
- run: pnpm install --frozen-lockfile
- name: Lint commit messages (PR only)
if: github.event_name == 'pull_request'
run: pnpm exec commitlint --from "${BASE_SHA}" --to "${HEAD_SHA}" --verbose
env:
BASE_SHA: ${{ github.event.pull_request.base.sha }}
HEAD_SHA: ${{ github.event.pull_request.head.sha }}
- run: pnpm lint
- run: pnpm check-types
- run: pnpm test