Skip to content
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.

fix(deps): update dependency unify-fastify to v1.5.246 #7912

fix(deps): update dependency unify-fastify to v1.5.246

fix(deps): update dependency unify-fastify to v1.5.246 #7912

Workflow file for this run

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