This repository has been archived by the owner on Sep 18, 2024. It is now read-only.
chore(deps): update dependency @fastify/swagger-ui to v5 #7971
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push] | |
jobs: | |
build: | |
name: Build, lint, and test on Node ${{ matrix.node }} and ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
node: ["20.x"] | |
os: [ubuntu-latest] | |
services: | |
postgres: | |
image: postgres | |
env: | |
POSTGRES_USER: docker | |
POSTGRES_PASSWORD: docker | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
ports: | |
- 5432:5432 | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Use Node ${{ matrix.node }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Install PNPM | |
uses: pnpm/[email protected] | |
- name: Install deps and build (with cache) | |
run: pnpm install --no-frozen-lockfile | |
- name: Lint | |
run: pnpm lint | |
- name: Build | |
run: pnpm build | |
- name: Test | |
run: cp .env.example .env && pnpm migration:up && pnpm test |