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

feat: complete back-end #23

feat: complete back-end

feat: complete back-end #23

Workflow file for this run

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