-
Notifications
You must be signed in to change notification settings - Fork 3
85 lines (68 loc) · 2.22 KB
/
Copy pathcd.yaml
File metadata and controls
85 lines (68 loc) · 2.22 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
name: EVIE CD
on:
push:
branches:
- master
tags:
- '*'
pull_request:
branches:
- master
jobs:
client-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '16'
- name: Audit
working-directory: client
env:
EVIE_FA_TOKEN: ${{ secrets.FA_TOKEN }}
run: npm audit --omit=dev
- name: Install packages
working-directory: client
env:
EVIE_FA_TOKEN: ${{ secrets.FA_TOKEN }}
run: npm install
- name: Run tests
working-directory: client
env:
EVIE_FA_TOKEN: ${{ secrets.FA_TOKEN }}
run: npm test
server-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Audit
working-directory: server
run: npm audit --omit=dev
- name: Install packages
working-directory: server
run: npm install
- name: Run tests
working-directory: server
run: npm test
deploy:
needs: [client-test, server-test]
runs-on: ubuntu-latest
if: github.event_name == 'push'
steps:
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '16'
- name: Deploy to dev.spaceships.app
if: startsWith(github.ref, 'refs/heads/')
run: npx -q @ionaru/teamcity-deploy teamcity.saturnserver.org Evie_BuildDev ${{ secrets.API_TOKEN }}
- name: Deploy to spaceships.app
if: startsWith(github.ref, 'refs/tags/')
run: npx -q @ionaru/teamcity-deploy teamcity.saturnserver.org Evie_BuildProd ${{ secrets.API_TOKEN }}