Skip to content

Commit

Permalink
chore(ci): services in be ci
Browse files Browse the repository at this point in the history
  • Loading branch information
krystxf committed Oct 20, 2024
1 parent 90b9082 commit aa8272c
Show file tree
Hide file tree
Showing 2 changed files with 78 additions and 4 deletions.
76 changes: 75 additions & 1 deletion .github/workflows/backend-ci.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Backend CI
name: Backend

on: push

Expand Down Expand Up @@ -47,3 +47,77 @@ jobs:
run: |
cd apps/backend
pnpm types:check
e2e:
runs-on: ubuntu-latest

services:
postgres:
image: postgres
env:
POSTGRES_USER: postgres_user
POSTGRES_PASSWORD: postgres_password
POSTGRES_DB: metro-now
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432

redis:
image: redis
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 6379:6379

steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 2

- uses: pnpm/action-setup@v4

- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"

- name: Install dependencies
run: |
pnpm install
- name: Setup environment
run: |
cd apps/backend
tail -n +3 ".env.local.example" > ".env.local"
echo "\n" >> ".env.local"
echo "GOLEMIO_API_KEY=${{ secrets.GOLEMIO_API_KEY }}" >> ".env.local"
cat ".env.local"
- name: Prisma generate
run: |
cd apps/backend
pnpm prisma:generate
- name: Run migrations
run: |
cd apps/backend
pnpm prisma:migrate:deploy
- name: Run seeds
run: |
cd apps/backend
pnpm prisma:seed
- name: Test e2e
run: |
cd apps/backend
pnpm test:e2e
6 changes: 3 additions & 3 deletions apps/backend/.env.local.example
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
GOLEMIO_API_KEY=

# postgres
POSTGRES_USER=pg_user
POSTGRES_PASSWORD=pg_password
POSTGRES_USER=postgres_user
POSTGRES_PASSWORD=postgres_password
POSTGRES_DB=metro-now


Expand All @@ -23,4 +23,4 @@ DATABASE_URL="postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${DB_HOST}:${DB

# redis
REDIS_HOST=localhost
REDIS_PORT=6379
REDIS_PORT=6379

0 comments on commit aa8272c

Please sign in to comment.