Skip to content

New column on governing documents page for year specific documents #1331

New column on governing documents page for year specific documents

New column on governing documents page for year specific documents #1331

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Node.js CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
HUSKY: 0
jobs:
build:
runs-on: ubuntu-latest
services:
postgres:
image: postgres
env:
POSTGRES_PASSWORD: postgres
# Set health checks to wait until postgres has started
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- uses: actions/checkout@v3
with:
# fetch-tags: true # This should be enough, see https://github.com/actions/checkout/issues/1471
fetch-depth: 0
- uses: pnpm/action-setup@v2
with:
version: 9
- name: Use Node.js latest LTS
uses: actions/setup-node@v3
with:
node-version: lts/*
cache: "pnpm"
- run: pnpm i
- run: pnpm prisma migrate deploy
- run: pnpm snaplet-seed sync
- run: pnpm run seed
- run: pnpm run lint
- run: pnpm run format
- run: pnpm run test
- run: pnpm run check
- run: pnpm run build