Skip to content

Commit

Permalink
fix: publish.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
n9mi committed Sep 10, 2024
1 parent d8cdc93 commit 5252bca
Showing 1 changed file with 53 additions and 52 deletions.
105 changes: 53 additions & 52 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,55 +5,56 @@ on:
branches: [ master ]

jobs:
runs-on: ubuntu-latest

# Service containers to run with `runner-job`
services:
# Label used to access the service container
postgres:
# Docker Hub image
image: postgres
# Provide the password for postgres
env:
POSTGRES_DB: contact_db
POSTGRES_PASSWORD: postgres
POSTGRES_USER: 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:
# Maps tcp port 5432 on service container to the host
- 5432:5432

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '20.x'

- name: Set up default port .env
run: echo "PORT=3000" >> .env

- name: Set up base url path .env
run: echo "BASE_URL_PATH=/api/v1" >> .env

- name: Set up database .env variables
run: echo "DATABASE_URL=postgresql://postgres:postgre@localhost:5432/contact_db?schema=public" >> .env

- name: Set up jwt secret .env variables
run: echo "JWT_SECRET=${{ secrets.JWT_SECRET }}" >> .env

- name: Set up jwt expiration time .env variables
run: echo "JWT_EXPIRED_IN_MINUTES=${{ secrets.JWT_EXPIRED_IN_MINUTES }}" >> .env

- name: Run database migration files
run: npm run db-migrate

- name: Run test
run: npm run test
test:
runs-on: ubuntu-latest

# Service containers to run with `runner-job`
services:
# Label used to access the service container
postgres:
# Docker Hub image
image: postgres
# Provide the password for postgres
env:
POSTGRES_DB: contact_db
POSTGRES_PASSWORD: postgres
POSTGRES_USER: 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:
# Maps tcp port 5432 on service container to the host
- 5432:5432

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '20.x'

- name: Set up default port .env
run: echo "PORT=3000" >> .env

- name: Set up base url path .env
run: echo "BASE_URL_PATH=/api/v1" >> .env

- name: Set up database .env variables
run: echo "DATABASE_URL=postgresql://postgres:postgre@localhost:5432/contact_db?schema=public" >> .env

- name: Set up jwt secret .env variables
run: echo "JWT_SECRET=${{ secrets.JWT_SECRET }}" >> .env

- name: Set up jwt expiration time .env variables
run: echo "JWT_EXPIRED_IN_MINUTES=${{ secrets.JWT_EXPIRED_IN_MINUTES }}" >> .env

- name: Run database migration files
run: npm run db-migrate

- name: Run test
run: npm run test

0 comments on commit 5252bca

Please sign in to comment.