fix: test nginx #1001
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: CI/CD | |
on: | |
- push | |
jobs: | |
test-backend: | |
name: Test backend | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/setup-node-using-nvm | |
- name: Install dependencies | |
run: yarn | |
- name: Build | |
run: npm run build | |
- name: Run tests with coverage report | |
run: yarn --cwd=packages/backend run test:coverage --forceExit | |
- name: List coverage directory | |
run: ls -la ./packages/backend | |
# TODO: Add later (does not work atm) | |
# - name: Coveralls | |
# uses: coverallsapp/github-action@master | |
# with: | |
# github-token: ${{ secrets.GITHUB_TOKEN }} | |
# path-to-lcov: ./packages/backend/coverage/lcov.info | |
# test-frontend: | |
# name: Test frontend | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v1 | |
# - uses: actions/setup-node@v1 | |
# with: | |
# node-version: '12.x' | |
# - name: Install dependencies | |
# run: yarn --cwd=frontend install | |
# - name: Run tests | |
# run: yarn --cwd=frontend test | |
# Test that building local dev env using docker works | |
test-build: | |
name: Build for dev env | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "Ref ${{ github.ref }}" | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Build docker image | |
run: | | |
docker build -t diamonds2_base:latest -f .docker/dockerfiles/base . | |
docker compose -f docker-compose.yml build | |
# Build and push production images | |
build-prod: | |
name: Build for prod env | |
runs-on: ubuntu-latest | |
if: github.ref == 'refs/heads/main' | |
needs: | |
- test-backend | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Build docker image | |
run: | | |
docker build -t diamonds2_base:latest -f .docker/dockerfiles/base . | |
docker compose -f docker-compose.prod-build.yml build | |
- name: Extract branch name | |
shell: bash | |
run: echo "BRANCH_NAME=$(echo ${GITHUB_REF#refs/heads/} | sed 's/\//_/g')" >> $GITHUB_ENV | |
- name: Print current branch name | |
run: echo "${BRANCH_NAME}" | |
- name: Docker login | |
run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u ${{ secrets.DOCKER_USERNAME }} --password-stdin | |
- name: Tag docker images | |
run: | | |
docker tag diamonds2-frontend etimodanielwinther/diamonds2_frontend:latest-${BRANCH_NAME} | |
docker tag diamonds2-frontend etimodanielwinther/diamonds2_frontend:${BRANCH_NAME}-${{ github.sha }} | |
docker tag diamonds2-backend etimodanielwinther/diamonds2_backend:latest-${BRANCH_NAME} | |
docker tag diamonds2-backend etimodanielwinther/diamonds2_backend:${BRANCH_NAME}-${{ github.sha }} | |
- name: Push docker images | |
run: | | |
docker push etimodanielwinther/diamonds2_frontend:latest-${BRANCH_NAME} | |
docker push etimodanielwinther/diamonds2_frontend:${BRANCH_NAME}-${{ github.sha }} | |
docker push etimodanielwinther/diamonds2_backend:latest-${BRANCH_NAME} | |
docker push etimodanielwinther/diamonds2_backend:${BRANCH_NAME}-${{ github.sha }} | |
# When pushing code to master we want to deploy latest master images to test environment | |
deploy-prod: | |
name: Deploy to new account | |
needs: build-prod | |
runs-on: ubuntu-latest | |
if: github.ref == 'refs/heads/main' | |
steps: | |
- uses: chrnorm/deployment-action@releases/v1 | |
name: Create GitHub deployment | |
id: deployment | |
with: | |
token: "${{ github.token }}" | |
target_url: https://diamonds.etimo.se | |
environment: prod | |
initial_status: "in_progress" | |
- name: Update apps | |
uses: appleboy/ssh-action@master | |
with: | |
host: ${{ secrets.DEPLOY_ETIMO_AWS_HOST }} | |
USERNAME: ${{ secrets.DEPLOY_ETIMO_AWS_USERNAME }} | |
PORT: 22 | |
KEY: ${{ secrets.DEPLOY_ETIMO_AWS_KEY }} | |
script: | | |
cd diamonds2 | |
git fetch | |
git checkout --progress --force ${{ github.sha }} | |
docker-compose down --remove-orphans | |
docker system prune -af | |
source ~/.bash_profile | |
DIAMONDS_DOCKER_TAG=main-${{ github.sha }} docker-compose -f docker-compose.prod-run.yml up -d | |
- name: Update autoscaler | |
uses: appleboy/ssh-action@master | |
with: | |
host: ${{ secrets.DEPLOY_ETIMO_AWS_AUTOSCALER_HOST }} | |
USERNAME: ${{ secrets.DEPLOY_ETIMO_AWS_USERNAME }} | |
PORT: 22 | |
KEY: ${{ secrets.DEPLOY_ETIMO_AWS_KEY }} | |
script: | | |
cd diamonds2 | |
git fetch | |
git checkout --progress --force ${{ github.sha }} | |
- name: Update deployment status (success) | |
if: success() | |
uses: chrnorm/deployment-status@releases/v1 | |
with: | |
token: "${{ github.token }}" | |
target_url: https://diamonds.etimo.se | |
state: "success" | |
deployment_id: ${{ steps.deployment.outputs.deployment_id }} | |
- name: Update deployment status (failure) | |
if: failure() | |
uses: chrnorm/deployment-status@releases/v1 | |
with: | |
token: "${{ github.token }}" | |
target_url: https://diamonds.etimo.se | |
state: "failure" | |
deployment_id: ${{ steps.deployment.outputs.deployment_id }} |