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

[FEATURE] Add swagger page #111

[FEATURE] Add swagger page

[FEATURE] Add swagger page #111

Workflow file for this run

name: Gateway CI/CD
on:
push:
branches: [gateway]
pull_request:
branches: [dev, main]
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/gateway/pnpm-lock.yaml
- name: Install dependencies
run: |
cd ./services/gateway
pnpm install --frozen-lockfile
- name: Build protos
run: |
cd ./services/gateway
pnpm build:proto
- name: Build
run: |
cd ./services/gateway
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/gateway/pnpm-lock.yaml
# - name: Install dependencies
# run: |
# cd ./services/gateway
# pnpm install --frozen-lockfile
# - name: Execute tests
# run: |
# cd ./services/gateway
# 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]
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/gateway/Dockerfile
push: true
tags: floriaaan/goodfood-gateway:latest
deploy:
runs-on: ubuntu-latest
needs: [build, test, publish]

Check failure on line 91 in .github/workflows/gateway.yml

View workflow run for this annotation

GitHub Actions / Gateway CI/CD

Invalid workflow file

The workflow is not valid. .github/workflows/gateway.yml (Line: 91, Col: 20): Job 'deploy' depends on unknown job 'test'.
steps:
- name: Install Kubectl
uses: azure/setup-kubectl@v3
- name: Setup Cluster Authentication
run: cat ${{ secrets.KUBECONFIG }} > /tmp/kubeconfig
- name: Deploying gateway
run: kubectl --kubeconfig=/tmp/kubeconfig rollout restart deployment gateway