-
Notifications
You must be signed in to change notification settings - Fork 0
89 lines (72 loc) · 2.15 KB
/
client-cd.yml
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
name: Frontend - build and deploy
on:
push:
branches:
- main
paths:
- "client/**" # limit workflow only to changes in frontend folder
- ".github/workflows/server-cd.yml"
pull_request:
branches:
- main
paths:
- "client/**"
- ".github/workflows/client-cd.yml"
defaults:
run:
working-directory: ./client
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout current repository
uses: actions/checkout@v4
- name: set up Node.js LTS
uses: actions/setup-node@v4
with:
node-version: '20'
- name: npm install
run: npm ci
- name: check formatting (Prettier)
run: npm run format
- name: check linting (ESLint)
run: npm run lint
- name: compile TypeScript
run: npm run compile
publish:
needs: build
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
steps:
- name: set up WARP (workaround for IPv6 on GitHub Actions)
uses: fscarmen/[email protected]
with:
stack: ipv6
- name: checkout current repository
uses: actions/checkout@v4
- name: set up Node.js LTS
uses: actions/setup-node@v4
with:
node-version: '20'
- name: npm install
working-directory: ./client
run: npm ci
- name: build static assets
env:
REACT_APP_API_URL: https://laane.xyz/stonks/api
working-directory: ./client
run: npm run build
- name: setup SSH for Ansible
shell: bash
run: |
eval `ssh-agent -s`
mkdir -p /home/runner/.ssh/
touch /home/runner/.ssh/id_rsa
echo -e "${{secrets.SSH_KEY}}" > /home/runner/.ssh/id_rsa
chmod 700 /home/runner/.ssh/id_rsa
ssh-keyscan -t rsa,dsa,ecdsa,ed25519 ${{ secrets.SSH_HOST }} >> /home/runner/.ssh/known_hosts
- name: run Ansible deployment playbook
shell: bash
working-directory: ./ansible
run: |
ansible-playbook -vv --private-key /home/runner/.ssh/id_rsa -u ${{secrets.SSH_USER}} -i ${{ secrets.SSH_HOST }}, frontend.yml