-
Notifications
You must be signed in to change notification settings - Fork 39
215 lines (212 loc) · 7.88 KB
/
v3.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
name: Continuous Integration (CODAP v3)
on:
push:
paths: # only run this workflow if it contains v3 files
- 'v3/**' # https://docs.github.com/en/actions/using-workflows/triggering-a-workflow#example-including-paths
- '.github/workflows/v3.yml'
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: snow-actions/[email protected]
with:
patterns: v3
- uses: actions/setup-node@v4
with:
node-version: 18
cache: 'npm'
cache-dependency-path: v3/package-lock.json
- name: Install Dependencies
working-directory: v3
run: npm ci
- name: Restore ESLint Cache
id: restore-eslint-cache
uses: actions/cache/restore@v4
with:
path: v3/.cache/eslint/
key: eslint-${{ hashFiles('v3/package-lock.json', 'v3/.eslintrc.build.cjs', 'v3/.eslintrc.cjs') }}
- name: Lint
working-directory: v3
run: npm run lint:build
- name: Save ESLint Cache
uses: actions/cache/save@v4
# Always save the cache on the main branch, it won't be built often and
# this way features branches will have an up-to-date main cache
if: github.ref_name == 'main' || steps.restore-eslint-cache.outputs.cache-hit != 'true'
with:
path: v3/.cache/eslint/
key: ${{steps.restore-eslint-cache.outputs.cache-primary-key}}
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: snow-actions/[email protected]
with:
patterns: v3
- uses: actions/setup-node@v4
with:
node-version: 18
cache: 'npm'
cache-dependency-path: v3/package-lock.json
- name: Install Dependencies
working-directory: v3
run: npm ci
- name: Restore Webpack Cache
id: restore-webpack-cache
uses: actions/cache/restore@v4
with:
path: v3/.cache/webpack/
key: webpack-build-${{ hashFiles('v3/webpack.config.js') }}
- uses: concord-consortium/s3-deploy-action/deploy-path@v1
id: s3-deploy-path
- name: Configure Environment
working-directory: v3
run: |
cat <<EOF > .env
GOOGLE_DRIVE_CLIENT_ID="${{ secrets.GOOGLE_DRIVE_CLIENT_ID }}"
GOOGLE_DRIVE_API_KEY="${{ secrets.GOOGLE_DRIVE_API_KEY }}"
GOOGLE_DRIVE_APP_ID="${{ secrets.GOOGLE_DRIVE_APP_ID }}"
EOF
- name: Build
working-directory: v3
run: npm run build:ci
env:
DEPLOY_PATH: ${{ steps.s3-deploy-path.outputs.deployPath }}
- name: Save Webpack Cache
uses: actions/cache/save@v4
# Always save the cache on the main branch, it won't be built often and
# this way features branches will have an up-to-date main cache
if: github.ref_name == 'main' || steps.restore-webpack-cache.outputs.cache-hit != 'true'
with:
path: v3/.cache/webpack/
key: ${{steps.restore-webpack-cache.outputs.cache-primary-key}}
- uses: actions/upload-artifact@v4
with:
name: build
path: v3/dist/
jest:
name: Run Jest Tests
runs-on: ubuntu-latest
steps:
- uses: snow-actions/[email protected]
with:
patterns: v3
- uses: actions/setup-node@v4
with:
node-version: 18
cache: 'npm'
cache-dependency-path: v3/package-lock.json
- name: Install Dependencies
working-directory: v3
run: npm ci
- name: Jest Cache
uses: actions/cache@v4
with:
path: /tmp/jest_rt
key: jest-${{ hashFiles('v3/package-lock.json') }}
- name: Get number of CPU cores
id: cpu-cores
uses: SimenB/github-actions-cpu-cores@v2
- name: Run Tests
working-directory: v3
run: npm run test:coverage -- --maxWorkers=${{ steps.cpu-cores.outputs.count }}
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: jest
cypress:
runs-on: ubuntu-latest
strategy:
# when one test fails, DO NOT cancel the other
# containers, because this will kill Cypress processes
# leaving the Dashboard hanging ...
# https://github.com/cypress-io/github-action/issues/48
fail-fast: false
steps:
- uses: browser-actions/setup-chrome@v1
with:
chrome-version: stable
- uses: snow-actions/[email protected]
with:
patterns: v3
- name: Restore Webpack Cache
id: restore-webpack-cache
uses: actions/cache/restore@v4
with:
path: v3/.cache/webpack/
# this key is different from the build job above because this is a dev build so its
# folder in the cache will be different and cached data is also likely different
key: webpack-dev-build-${{ hashFiles('v3/webpack.config.js') }}
- uses: cypress-io/github-action@v6
with:
working-directory: v3
start: npm start
wait-on: 'http://localhost:8080'
# add timeout of 5 minutes to start
wait-on-timeout: 300
# only record the results to dashboard.cypress.io if CYPRESS_RECORD_KEY is set
record: ${{ !!secrets.CYPRESS_RECORD_KEY }}
browser: chrome
# only run a single test
# TODO: setup a special test for this purpose
spec: cypress/e2e/smoke/single-codap-smoke.ts
group: 'Smoke Tests'
env:
# pass the Dashboard record key as an environment variable
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
# pass GitHub token to allow accurately detecting a build vs a re-run build
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# turn on code coverage when running npm start
# so far we've been using a webpack coverage-istanbul-loader for this
# but there has been work on using the code coverage support in the browser directly,
# which should be much faster
CODE_COVERAGE: true
# Also turn on the code coverage tasks in cypress itself, these are disabled
# by default.
CYPRESS_coverage: true
# Have webpack skip eslint checking, that was already done by the build step
SKIP_ESLINT: true
- name: Save Webpack Cache
uses: actions/cache/save@v4
# Always save the cache on the main branch, it won't be built often and
# this way features branches will have an up-to-date main cache
if: github.ref_name == 'main' || steps.restore-webpack-cache.outputs.cache-hit != 'true'
with:
path: v3/.cache/webpack/
key: ${{steps.restore-webpack-cache.outputs.cache-primary-key}}
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: cypress
s3-deploy:
name: S3 Deploy
needs:
- lint
- build
- jest
- cypress
runs-on: ubuntu-latest
environment:
name: ${{ github.ref_type == 'branch' && 'branches' || 'versions' }}
url: https://codap3.concord.org/${{ steps.s3-deploy.outputs.deployPath }}/
steps:
- uses: actions/download-artifact@v4
with:
name: build
path: v3/dist
- uses: concord-consortium/s3-deploy-action@v1
id: s3-deploy
with:
build: echo no build
bucket: models-resources
prefix: codap3
workingDirectory: v3
awsAccessKeyId: ${{ secrets.V3_AWS_ACCESS_KEY_ID }}
awsSecretAccessKey: ${{ secrets.V3_AWS_SECRET_ACCESS_KEY }}
# Parameters to GHActions have to be strings, so a regular yaml array cannot
# be used. Instead the `|` turns the following lines into a string
topBranches: |
["main"]