-
-
Notifications
You must be signed in to change notification settings - Fork 24
195 lines (159 loc) · 5.21 KB
/
ci.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
name: CI
on: [push]
env:
CI: true
TZ: UTC
E2E_TEST: 1
NODE_ENV: ci
PGHOST: localhost
PGUSER: postgres
REST_URL: http://localhost:3003
API_URL: http://localhost:3060
API_KEY: dvl-1510egmf4a23d80342403fb599qd
API_FOLDER: /home/runner/work/opencollective-rest/opencollective-rest/opencollective-api
REST_FOLDER: /home/runner/work/opencollective-rest/opencollective-rest
PG_DATABASE: opencollective_dvl
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Update apt
run: sudo apt-get update || exit 0
- name: Checkout
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version-file: 'package.json'
# Npm cache
- name: Restore .npm cache
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-npm-cache-${{ github.sha }}
restore-keys: |
- ${{ runner.os }}-npm-cache-${{ github.sha }}
- ${{ runner.os }}-npm-cache-
- name: Restore node_modules
uses: actions/cache@v3
id: node-modules
with:
path: node_modules
key: ${{ runner.os }}-node-modules-${{ hashFiles('package-lock.json') }}
- name: Install dependencies
if: steps.node-modules.outputs.cache-hit != 'true'
run: npm ci --prefer-offline --no-audit
- run: npm run lint:quiet
prettier:
runs-on: ubuntu-latest
steps:
- name: Update apt
run: sudo apt-get update || exit 0
- name: Install graphicsmagick
run: sudo apt-get install -y graphicsmagick
- name: Checkout
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version-file: 'package.json'
# Npm cache
- name: Restore .npm cache
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-npm-cache-${{ github.sha }}
restore-keys: |
- ${{ runner.os }}-npm-cache-${{ github.sha }}
- ${{ runner.os }}-npm-cache-
- name: Restore node_modules
uses: actions/cache@v3
id: node-modules
with:
path: node_modules
key: ${{ runner.os }}-node-modules-${{ hashFiles('package-lock.json') }}
- name: Install dependencies
if: steps.node-modules.outputs.cache-hit != 'true'
run: npm ci --prefer-offline --no-audit
- run: npm run prettier:check
test:
runs-on: ubuntu-latest
services:
redis:
image: redis
ports:
- 6379:6379
options: --entrypoint redis-server
postgres:
image: postgres:13.8
env:
POSTGRES_USER: postgres
POSTGRES_DB: postgres
POSTGRES_HOST_AUTH_METHOD: trust
ports:
- 5432:5432
# needed because the postgres container does not provide a healthcheck
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- name: Update apt
run: sudo apt-get update || exit 0
- name: Install postgresql-client
run: sudo apt-get install -y postgresql-client
# Checkouts
- name: Checkout (rest)
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version-file: 'package.json'
# Npm cache
- name: Restore .npm cache
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-npm-cache-${{ github.sha }}
restore-keys: |
- ${{ runner.os }}-npm-cache-${{ github.sha }}
- ${{ runner.os }}-npm-cache-
# Prepare API
- name: Checkout (api)
uses: actions/checkout@v3
with:
repository: opencollective/opencollective-api
path: opencollective-api
- name: Restore node_modules (api)
uses: actions/cache@v3
id: api-node-modules
with:
path: opencollective-api/node_modules
key: ${{ runner.os }}-api-node-modules-${{ hashFiles('opencollective-api/package-lock.json') }}
- name: Install dependencies (api)
working-directory: opencollective-api
if: steps.api-node-modules.outputs.cache-hit != 'true'
run: npm ci --prefer-offline --no-audit
- name: Build (api)
working-directory: opencollective-api
if: steps.api-build.outputs.cache-hit != 'true'
run: npm run build
# Prepare Rest
- name: Restore node_modules (rest)
uses: actions/cache@v3
id: rest-node-modules
with:
path: node_modules
key: ${{ runner.os }}-rest-node-modules-${{ hashFiles('package-lock.json') }}
- name: Install dependencies (rest)
if: steps.rest-node-modules.outputs.cache-hit != 'true'
run: npm ci --prefer-offline --no-audit
- name: Build (rest)
run: npm run build
# Prepare DB
- name: Restore DB
working-directory: opencollective-api
run: npm run db:restore
- name: Migrate DB
working-directory: opencollective-api
run: npm run db:migrate
# Run test
- name: Run test
run: ./scripts/run_test.sh