-
Notifications
You must be signed in to change notification settings - Fork 0
227 lines (220 loc) · 6.95 KB
/
main.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
name: CI
on:
pull_request:
push:
branches: [main, develop]
workflow_dispatch:
jobs:
install:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "14"
cache: "yarn"
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Cache install
uses: actions/cache@v2
with:
path: ./node_modules/
key: ${{ github.sha }}-install
- name: Cache Cypress
uses: actions/cache@v2
with:
path: ~/.cache/Cypress/
key: ${{ github.sha }}-cypress
code_style:
runs-on: ubuntu-latest
needs: install
steps:
- uses: actions/checkout@v2
- name: Retrive install cache
uses: actions/cache@v2
with:
path: ./node_modules/
key: ${{ github.sha }}-install
- name: prettier
run: yarn prettier:check
lint:
runs-on: ubuntu-latest
needs: install
steps:
- uses: actions/checkout@v2
- name: Retrive install cache
uses: actions/cache@v2
with:
path: ./node_modules/
key: ${{ github.sha }}-install
- name: eslint
run: yarn lint
setup_backend:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
path: "./bl-api"
repository: boklisten/bl-api
- name: Compile
run: |
cd bl-api
yarn install --frozen-lockfile
yarn build
- name: Cache backend
uses: actions/cache@v2
with:
path: ./bl-api/
key: ${{ github.sha }}-backend
build:
runs-on: ubuntu-latest
needs: [install, setup_backend]
steps:
- uses: actions/checkout@v2
- name: Retrive Install Cache
uses: actions/cache@v2
with:
path: ./node_modules/
key: ${{ github.sha }}-install
- name: Retrive Next cache
uses: actions/cache@v2
with:
path: ${{ github.workspace }}/.next/cache
# Generate a new cache whenever packages or source files change.
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/yarn.lock') }}-${{ hashFiles('**.[jt]s', '**.[jt]sx') }}
# If source files changed but packages didn't, rebuild from a prior cache.
restore-keys: |
${{ runner.os }}-nextjs-${{ hashFiles('**/yarn.lock') }}-
- name: Retrive backend cache
uses: actions/cache@v2
with:
path: ./bl-api/
key: ${{ github.sha }}-backend
- name: Start MongoDB
uses: supercharge/mongodb-github-action@1.7.0
with:
mongodb-version: "4.4"
- name: Start backend
run: |
cd bl-api
yarn load_fixtures
yarn serve &
env:
PORT: 1337
BLAPI_HOST: localhost
BLAPI_PORT: 1337
MONGODB_URI: mongodb://localhost:27017/test
SERVER_PATH: /
NODE_ENV: dev
LOG_LEVEL: silly
URI_WHITELIST: localhost:3000 http://localhost:3000
ACCESS_TOKEN_SECRET: not_secret_at_all
BL_API_URI: http://localhost:1337/
CLIENT_URI: http://localhost:3000/
REFRESH_TOKEN_SECRET: not_the_prod_secret
DIBS_CHECKOUT_KEY: ${{ secrets.DIBS_CHECKOUT_KEY }}
DIBS_SECRET_KEY: ${{ secrets.DIBS_CHECKOUT_SECRET }}
DIBS_URI: https://test.api.dibspayment.eu/v1/
FACEBOOK_CLIENT_ID: 123
FACEBOOK_SECRET: 123
FEIDE_AUTHORIZATION_URL: https://auth.dataporten.no/oauth/authorization
FEIDE_CLIENT_ID: yello
FEIDE_SECRET: foo
FEIDE_TOKEN_URL: https://auth.dataporten.no/oauth/token
FEIDE_USER_INFO_URL: https://auth.dataporten.no/userinfo
GOOGLE_CLIENT_ID: totally_legit
GOOGLE_SECRET: nope
SENDGRID_API_KEY: foo
TWILIO_SMS_AUTH_TOKEN: foo
TWILIO_SMS_SID: ACfoo
TWILIO_STATUS_CALLBACK_URL: foo
BRING_API_KEY: ${{ secrets.BRING_API_KEY }}
BRING_API_ID: ${{ secrets.BRING_API_ID }}
- name: Build
run: yarn build
- name: Cache build
uses: actions/cache@v2
with:
path: ./.next/
key: ${{ github.sha }}-build
tests:
runs-on: ubuntu-latest
needs: [build]
strategy:
fail-fast: false
matrix:
containers: [1, 2, 3, 4]
steps:
- uses: actions/checkout@v2
- name: Retrive install cache
uses: actions/cache@v2
with:
path: ./node_modules/
key: ${{ github.sha }}-install
- name: Retrive Cypress cache
uses: actions/cache@v2
with:
path: ~/.cache/Cypress/
key: ${{ github.sha }}-cypress
- name: Retrive build cache
uses: actions/cache@v2
with:
path: ./.next/
key: ${{ github.sha }}-build
- name: Retrive backend cache
uses: actions/cache@v2
with:
path: ./bl-api/
key: ${{ github.sha }}-backend
- name: Start MongoDB
uses: supercharge/mongodb-github-action@1.7.0
with:
mongodb-version: "4.4"
- name: Start backend
run: |
cd bl-api
yarn load_fixtures
yarn serve &
env:
PORT: 1337
BLAPI_HOST: localhost
BLAPI_PORT: 1337
MONGODB_URI: mongodb://localhost:27017/test
SERVER_PATH: /
NODE_ENV: dev
LOG_LEVEL: silly
URI_WHITELIST: localhost:3000 http://localhost:3000
ACCESS_TOKEN_SECRET: not_secret_at_all
BL_API_URI: http://localhost:1337/
CLIENT_URI: http://localhost:3000/
REFRESH_TOKEN_SECRET: not_the_prod_secret
DIBS_CHECKOUT_KEY: ${{ secrets.DIBS_CHECKOUT_KEY }}
DIBS_SECRET_KEY: ${{ secrets.DIBS_CHECKOUT_SECRET }}
DIBS_URI: https://test.api.dibspayment.eu/v1/
FACEBOOK_CLIENT_ID: 123
FACEBOOK_SECRET: 123
FEIDE_AUTHORIZATION_URL: https://auth.dataporten.no/oauth/authorization
FEIDE_CLIENT_ID: yello
FEIDE_SECRET: foo
FEIDE_TOKEN_URL: https://auth.dataporten.no/oauth/token
FEIDE_USER_INFO_URL: https://auth.dataporten.no/userinfo
GOOGLE_CLIENT_ID: totally_legit
GOOGLE_SECRET: nope
SENDGRID_API_KEY: foo
TWILIO_SMS_AUTH_TOKEN: foo
TWILIO_SMS_SID: ACfoo
TWILIO_STATUS_CALLBACK_URL: foo
BRING_API_KEY: ${{ secrets.BRING_API_KEY }}
BRING_API_ID: ${{ secrets.BRING_API_ID }}
- name: Cypress run
uses: cypress-io/github-action@v5.3.1
with:
install: false
start: yarn serve
record: true
parallel: true
group: "UI - Electron"
env:
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
BRING_API_KEY: ${{ secrets.BRING_API_KEY }}
BRING_API_ID: ${{ secrets.BRING_API_ID }}