-
Notifications
You must be signed in to change notification settings - Fork 0
91 lines (78 loc) · 2.2 KB
/
test.yml
File metadata and controls
91 lines (78 loc) · 2.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
name: Run CI
on:
push:
branches:
- feature/**
- feat/**
- fix/**
env:
HOST: ${{ secrets.HOST }}
USERNAME: ${{ secrets.USERNAME }}
KEY: ${{ secrets.SSH_KEY }}
PORT: ${{ secrets.PORT }}
IMAGE_NAME: registry.uspray.kr/uspray-client-intg:latest
PROJECT_NAME: uspray-client-intg
DOMAIN_HOST: www.intg.uspray.kr
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 19
- name: Cache npm dependencies
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies
run: |
npm config set legacy-peer-deps true
npm ci
- name: Run tests
run: |
CI=false
npm test
deliver:
if: github.ref_name == vars.INTG_BRANCH
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Decrypt environment variables
run: |
echo "${{ secrets.DEV_ENV }}" > .env
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Build and push
uses: docker/build-push-action@v2
with:
context: .
file: ./deploy/Dockerfile
push: true
tags: ${{ env.IMAGE_NAME }}
platforms: linux/amd64
deploy:
if: github.ref_name == vars.INTG_BRANCH
needs: deliver
runs-on: self-hosted
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Deploy Docker image
env:
SERVICE_NAME: ${{ env.PROJECT_NAME }}
DOMAIN_HOST: ${{ env.DOMAIN_HOST }}
IMAGE_NAME: ${{ env.IMAGE_NAME }}
run: |
if [ ! -z "$(docker ps -q -f name=${{env.PROJECT_NAME}})" ]; then
docker compose -f ./deploy/docker-compose.yml -p ${{env.PROJECT_NAME}} down
docker rmi ${{env.IMAGE_NAME}}
fi
docker compose -f ./deploy/docker-compose.yml -p ${{env.PROJECT_NAME}} up -d