This repository has been archived by the owner on Jul 8, 2024. It is now read-only.
[FEATURE] Add swagger page #120
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: Product Microservice CI/CD | |
on: | |
push: | |
branches: [product-service] | |
pull_request: | |
branches: [main, dev] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: latest | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "18.x" | |
cache: "pnpm" | |
cache-dependency-path: services/product/pnpm-lock.yaml | |
- name: Install dependencies | |
run: | | |
cd ./services/product | |
pnpm install --frozen-lockfile | |
- name: Build | |
run: | | |
cd ./services/product | |
pnpm build | |
test: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: actions/checkout@master | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: latest | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "18.x" | |
cache: "pnpm" | |
cache-dependency-path: services/product/pnpm-lock.yaml | |
- name: Install dependencies | |
run: | | |
cd ./services/product | |
pnpm install --frozen-lockfile | |
- name: Execute tests | |
run: | | |
cd ./services/product | |
pnpm test | |
sonarcloud: | |
name: SonarCloud | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | |
- name: SonarCloud Scan | |
uses: SonarSource/sonarcloud-github-action@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
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/product/Dockerfile | |
push: true | |
tags: floriaaan/goodfood-product:latest | |
deploy: | |
runs-on: ubuntu-latest | |
needs: [build, test, publish] | |
steps: | |
- name: Install Kubectl | |
uses: azure/setup-kubectl@v3 | |
- name: Install Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.20.3 | |
- name: Install Podman | |
run: sudo apt-get -y install podman | |
- name: Install Kind | |
run: go install sigs.k8s.io/[email protected] | |
- name: Setup Cluster Authentication | |
env: | |
KUBECONFIG_DATA: ${{ secrets.KUBECONFIG }} | |
run: | | |
echo "$KUBECONFIG_DATA" | base64 --decode > /tmp/kubeconfig | |
- name: Deploying product | |
run: kubectl --kubeconfig=/tmp/kubeconfig rollout restart deployment product-service |