forked from MeasureAuthoringTool/bonnie
-
Notifications
You must be signed in to change notification settings - Fork 0
259 lines (215 loc) · 9.06 KB
/
build.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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
name: Continuous Integration
on:
push:
branches: [master, bonnie-prior, bonnie-on-fhir]
pull_request:
branches: [master, bonnie-prior, bonnie-on-fhir]
jobs:
build:
runs-on: ubuntu-latest
services:
mongodb:
image: mongo:3.4.23
ports:
- 27017:27017
steps:
- uses: actions/checkout@v2
- name: Set up Ruby 2.4
uses: actions/setup-ruby@v1
with:
ruby-version: 2.4
bundler-cache: true
- name: Install bundler & bundle-audit
run: |
gem install bundler -v 1.17.3
gem install bundle-audit
- name: Install ruby gems
run: bundle install --jobs 4 --retry 3
# - name: Run Rubocop
# env:
# RAILS_ENV: test
# run: |
# bundle exec rubocop
# - name: Execute Brakeman static vulnerability analysis
# run: bundle exec brakeman -qAzw1
- name: Perform audit check for vulnerabilities
env:
RAILS_ENV: test
run: bundle exec bundle-audit check --update --ignore=CVE-2020-26247
- name: Set and run up overcommit
run: |
git config --global user.email "[email protected]"
git config --global user.name "GitHub Actions CI"
bundle exec overcommit --sign
bundle exec overcommit --run
- name: NPM install
run: npm ci
- name: NPM audit
run: npm audit --audit-level=high
- name: Build and test with Rake
env:
RAILS_ENV: test
uses: GabrielBB/xvfb-action@v1
with:
run: bundle exec rake test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
file: coverage/.resultset.json
fail_ci_if_error: true
- name: Setup Istanbul
run: sudo npm install -g istanbul
# ------- Teaspoon tests for "cqm_specs" directory ----------
- name: Run teaspoon tests for cqm_specs
uses: GabrielBB/xvfb-action@v1
with:
run: bundle exec rake teaspoon DIR=cqm_specs
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
file: coverage-frontend/default/lcov.info
fail_ci_if_error: true
# ----------------------------------------------------------------------
# ------- Teaspoon tests for "helper_specs" directory ----------
- name: Run teaspoon tests for helper_specs
uses: GabrielBB/xvfb-action@v1
with:
run: bundle exec rake teaspoon DIR=helper_specs
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
file: coverage-frontend/default/lcov.info
fail_ci_if_error: true
# ----------------------------------------------------------------------
# ------- Teaspoon tests for "integration" directory ----------
- name: Run teaspoon tests for integration
uses: GabrielBB/xvfb-action@v1
with:
run: bundle exec rake teaspoon DIR=integration
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
file: coverage-frontend/default/lcov.info
fail_ci_if_error: true
# ----------------------------------------------------------------------
# ------- Teaspoon tests for "models" directory ----------
- name: Run teaspoon tests for models
uses: GabrielBB/xvfb-action@v1
with:
run: bundle exec rake teaspoon DIR=models
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
file: coverage-frontend/default/lcov.info
fail_ci_if_error: true
# ----------------------------------------------------------------------
# ------- Teaspoon tests for "patient_builder_tests/input_views" directory ----------
- name: Run teaspoon tests for patient_builder_tests/input_views
uses: GabrielBB/xvfb-action@v1
with:
run: bundle exec rake teaspoon DIR=patient_builder_tests/input_views
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
file: coverage-frontend/default/lcov.info
fail_ci_if_error: true
# ----------------------------------------------------------------------
# ------- Teaspoon tests for "patient_builder_tests/measure" directory ----------
- name: Run teaspoon tests for patient_builder_tests/measure
uses: GabrielBB/xvfb-action@v1
with:
run: bundle exec rake teaspoon DIR=patient_builder_tests/measure
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
file: coverage-frontend/default/lcov.info
fail_ci_if_error: true
# ----------------------------------------------------------------------
# ------- Teaspoon tests for "patient_builder_tests/patient" directory ----------
- name: Run teaspoon tests for patient_builder_tests/patient
uses: GabrielBB/xvfb-action@v1
with:
run: bundle exec rake teaspoon DIR=patient_builder_tests/patient
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
file: coverage-frontend/default/lcov.info
fail_ci_if_error: true
# ----------------------------------------------------------------------
# ------- Teaspoon tests for "patient_builder_tests/criteria" directory ----------
- name: Run teaspoon tests for patient_builder_tests/criteria
uses: GabrielBB/xvfb-action@v1
with:
run: bundle exec rake teaspoon DIR=patient_builder_tests/criteria
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
file: coverage-frontend/default/lcov.info
fail_ci_if_error: true
# ----------------------------------------------------------------------
# ------- Teaspoon tests for "production_tests" directory ----------
- name: Run teaspoon tests for production_tests
uses: GabrielBB/xvfb-action@v1
with:
run: bundle exec rake teaspoon DIR=production_tests
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
file: coverage-frontend/default/lcov.info
fail_ci_if_error: true
# ----------------------------------------------------------------------
# ------- Teaspoon tests for "calc" directory ----------
- name: Run teaspoon tests for calc
uses: GabrielBB/xvfb-action@v1
with:
run: bundle exec rake teaspoon DIR=calc
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
file: coverage-frontend/default/lcov.info
fail_ci_if_error: true
# ----------------------------------------------------------------------
# ------- Teaspoon tests for "patient_builder_tests/cql/cql_logic_view_spec" file ----------
- name: Run teaspoon tests for patient_builder_tests/cql/cql_logic_view_spec
uses: GabrielBB/xvfb-action@v1
with:
run: bundle exec rake teaspoon FILE=spec/javascripts/patient_builder_tests/cql/cql_logic_view_spec.js.coffee
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
file: coverage-frontend/default/lcov.info
fail_ci_if_error: true
# ----------------------------------------------------------------------
# ------- Teaspoon tests for "patient_builder_tests/cql/cql_truncated_statement_view_spec" file ----------
- name: Run teaspoon tests for patient_builder_tests/cql/cql_truncated_statement_view_spec
uses: GabrielBB/xvfb-action@v1
with:
run: bundle exec rake teaspoon FILE=spec/javascripts/patient_builder_tests/cql/cql_truncated_statement_view_spec.js.coffee
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
file: coverage-frontend/default/lcov.info
fail_ci_if_error: true
# ----------------------------------------------------------------------
# ------- Teaspoon tests for "patient_builder_tests/cql/cql_coloring_spec.js.coffee" file ----------
- name: Run teaspoon tests for patient_builder_tests/cql/cql_coloring_spec
uses: GabrielBB/xvfb-action@v1
with:
run: bundle exec rake teaspoon FILE=spec/javascripts/patient_builder_tests/cql/cql_coloring_spec.js.coffee
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
file: coverage-frontend/default/lcov.info
fail_ci_if_error: true
# ----------------------------------------------------------------------
# ------- Teaspoon tests for "cql_calculator_spec.js.coffee" file ----------
- name: Run teaspoon tests for cql_calculator_spec.js.coffee
uses: GabrielBB/xvfb-action@v1
with:
run: bundle exec rake teaspoon FILE=spec/javascripts/cql_calculator_spec.js.coffee
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
file: coverage-frontend/default/lcov.info
fail_ci_if_error: true
# ----------------------------------------------------------------------