chore(deps-dev): bump pino-pretty from 9.4.0 to 10.2.3 #1177
Workflow file for this run
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: | |
pull_request: | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "18" | |
- run: | | |
npm clean-install | |
npm run check | |
npm run test | |
prettier-check: | |
name: Prettier check | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actionsx/prettier@v2 | |
with: | |
args: --check "{src,test}/**/*.ts" | |
docker: | |
name: Build with docker | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
name: Checkout Repo | |
- uses: docker/setup-buildx-action@v2 | |
name: Set up Docker Buildx | |
- uses: docker/build-push-action@v4 | |
with: | |
push: false | |
tags: pg-meta:test | |
load: true | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
- name: Check Health status | |
run: | | |
docker run -d --name pg-meta-test pg-meta:test | |
state=$(docker inspect -f '{{ .State.Health.Status}}' pg-meta-test) | |
if [ $state != "starting" ]; then | |
exit 1 | |
fi | |
sleep 10 | |
state=$(docker inspect -f '{{ .State.Health.Status}}' pg-meta-test) | |
docker stop pg-meta-test | |
if [ $state == "healthy" ]; then | |
exit 0 | |
else | |
exit 1 | |
fi | |