chore(test): add hello world to test CI #599
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: Continuous Integration | |
on: push | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Install dependencies and Build app | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: corepack enable | |
- name: Set Node.js 20.13.1 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.13.1 | |
cache: yarn | |
- run: yarn install | |
- run: yarn prepare | |
- run: yarn lint | |
- run: yarn build | |
deploy_dev: | |
needs: | |
- build | |
if: github.ref == 'refs/heads/develop' | |
name: Deploy Dev | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎 | |
uses: actions/checkout@v4 | |
- name: Deploy | |
uses: appleboy/[email protected] | |
with: | |
host: ${{vars.DEPLOY_SSH_HOST}} | |
username: ${{vars.DEPLOY_SSH_USERNAME}} | |
key: ${{secrets.DEPLOY_SSH_KEY_DEV}} | |
port: 2222 | |
script: | | |
echo -n 'Deployment started at: ' && | |
date -u && | |
cd /root/data/clearance && | |
git fetch && | |
git checkout -f origin/dev && | |
git submodule init && | |
git submodule update && | |
docker compose --profile "*" build && | |
docker compose up -d && | |
echo -n 'Deployment completed at: ' && | |
date -u |