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

Commit

Permalink
Add CI/CD
Browse files Browse the repository at this point in the history
  • Loading branch information
PierreLbg committed Jul 25, 2023
1 parent 59aa896 commit 47f657d
Showing 1 changed file with 69 additions and 0 deletions.
69 changes: 69 additions & 0 deletions .github/workflows/promotions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
name: Promotions Microservice CI/CD

on:
push:
branches: [ promotions ]
pull_request:
branches: [ dev, main ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: pnpm/action-setup@v2
with:
version: latest
- uses: actions/setup-node@v3
with:
node-version: "18.x"
cache: "pnpm"
cache-dependency-path: services/promotions/pnpm-lock.yaml
- name: Install dependencies
run: |
cd ./services/promotions
pnpm install --frozen-lockfile
- name: Build
run: |
cd ./services/promotions
pnpm build
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: pnpm/action-setup@v2
with:
version: latest
- uses: actions/setup-node@v3
with:
node-version: "18.x"
cache: "pnpm"
cache-dependency-path: services/promotions/pnpm-lock.yaml
- name: Install dependencies
run: |
cd ./services/promotions
pnpm install --frozen-lockfile
- name: Execute tests
run: |
cd ./services/promotions
pnpm test
publish:
runs-on: ubuntu-latest
needs: [ build, test ]
steps:
- name: Checkout code
uses: actions/checkout@master
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v4
with:
context: ./services/
file: ./services/promotions/Dockerfile
push: true
tags: pierrelbg/goodfood-promotions:latest

0 comments on commit 47f657d

Please sign in to comment.