Skip to content

Bump pino-pretty from 10.2.2 to 10.2.3 #1331

Bump pino-pretty from 10.2.2 to 10.2.3

Bump pino-pretty from 10.2.2 to 10.2.3 #1331

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
target_node:
runs-on: ubuntu-latest
services:
postgres:
image: postgres
env:
POSTGRES_PASSWORD: postgres
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: 18.17.1
- name: Install dependencies
run: npm ci
- name: Run build
run: npm run build
- name: Run all tests (without coverage)
run: npm run test:ci -- --coverage=false
env:
PGHOST: localhost
PGPORT: 5432
PGUSER: postgres
PGPASSWORD: postgres
AUTH_SERVER_ISSUER: https://totally-fake-server-name/realms/pdc
OPENAPI_DOCS_AUTH_CLIENT_ID: pdc-fake-client-id
- name: Run all tests (with coverage)
run: npm run test:ci
env:
PGHOST: localhost
PGPORT: 5432
PGUSER: postgres
PGPASSWORD: postgres
AUTH_SERVER_ISSUER: https://totally-fake-server-name/realms/pdc
OPENAPI_DOCS_AUTH_CLIENT_ID: pdc-fake-client-id
- name: Upload test coverage
uses: codecov/codecov-action@v3