-
Notifications
You must be signed in to change notification settings - Fork 12
216 lines (192 loc) · 7.35 KB
/
pr-status-checks.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
name: Pull request status checks
on:
pull_request:
branches:
- development
- main
jobs:
## ###############
## 💚 Automated testing
## ###############
automated-testing:
name: Pull request automated testing
runs-on: buildjet-8vcpu-ubuntu-2204
strategy:
fail-fast: false
matrix:
# run 3 copies of the current job in parallel
containers: [ 1, 2, 3, 4 ]
steps:
# Clones repo to the commit that triggered the event
- name: Cloning repository
uses: actions/checkout@v3
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v35
with:
files_ignore: .*/**
# Set up node
- name: Set up frontend Node.js (.nvmrc)
if: steps.changed-files.outputs.any_changed == 'true'
uses: actions/setup-node@v3
with:
node-version-file: ".nvmrc"
cache: "npm"
- name: Install frontend dependencies
if: steps.changed-files.outputs.any_changed == 'true'
run: npm i
- name: Set up functions Node.js (.nvmrc)
if: steps.changed-files.outputs.any_changed == 'true'
uses: actions/setup-node@v3
with:
node-version-file: "functions/.nvmrc"
cache: "npm"
- name: Install functions dependencies
if: steps.changed-files.outputs.any_changed == 'true'
run: npm i
working-directory: functions
# Set up gcloud projects for functions
- name: "Gcloud auth for DEV firebase"
uses: "google-github-actions/auth@v1"
if: |
github.base_ref == 'development' &&
steps.changed-files.outputs.any_changed == 'true'
with:
credentials_json: "${{ secrets.SERVICE_ACCOUNT_DEVELOPMENT }}"
- name: "Gcloud auth for PROD firebase"
uses: "google-github-actions/auth@v1"
if: |
github.base_ref == 'main' &&
steps.changed-files.outputs.any_changed == 'true'
with:
credentials_json: "${{ secrets.SERVICE_ACCOUNT_PRODUCTION }}"
# Set up environment
- name: Create DEV environment files
if: |
github.base_ref == 'development' &&
steps.changed-files.outputs.any_changed == 'true'
run: |
echo -e "${{ secrets.DOTENV_DEVELOPMENT }}" > .env
echo -e "\nVITE_useEmulator=true" >> .env
echo -e "${{ secrets.FUNCTIONS_DOTENV_DEVELOPMENT }}" > functions/.env.development
sed -i "s;%%cypress_cloud_service_url%%;${{ secrets.CYPRESS_CLOUD_SERVICE_URL }};g" currents.config.js
cd functions && npm run use:dev
- name: Create PROD environment files
if: |
github.base_ref == 'main' &&
steps.changed-files.outputs.any_changed == 'true'
run: |
echo -e "${{ secrets.DOTENV_PRODUCTION }}" > .env
echo -e "\nVITE_useEmulator=true" >> .env
echo -e "${{ secrets.FUNCTIONS_DOTENV_PRODUCTION }}" > functions/.env.production
sed -i "s;%%cypress_cloud_service_url%%;${{ secrets.CYPRESS_CLOUD_SERVICE_URL }};g" currents.config.js
cd functions && npm run use:prod
# Check linting
- name: Check for linting errors
if: steps.changed-files.outputs.any_changed == 'true'
run: npm run lint
# Check CI
- name: Run cypress tests
if: steps.changed-files.outputs.any_changed == 'true'
run: npm run test:ci:with_emulator
# If CI failed, upload the videos for debugging
- name: If testing failed, upload video files
if: ${{ always() }}
uses: actions/upload-artifact@v3
with:
name: cypress-videos ${{ matrix.containers }}
path: |
cypress/videos
cypress/screenshots
# Upload log files of this fun
- name: Upload all log files
if: always()
uses: actions/upload-artifact@v3
with:
name: logfiles ${{ matrix.containers }}
path: |
*.log
**/*.log
## ###############
## 🚀 Deploy
## ###############
deploy-preview:
needs: automated-testing
runs-on: buildjet-4vcpu-ubuntu-2204
steps:
# Clones repo to the commit that triggered the event
- name: Cloning repository
uses: actions/checkout@v3
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v35
with:
files_ignore: .*/**
# Set up node
- name: Set up frontend Node.js (.nvmrc)
if: steps.changed-files.outputs.any_changed == 'true'
uses: actions/setup-node@v3
with:
node-version-file: ".nvmrc"
cache: "npm"
- name: Install frontend dependencies
if: steps.changed-files.outputs.any_changed == 'true'
run: npm i
- name: Install functions dependencies
if: steps.changed-files.outputs.any_changed == 'true'
run: npm i
working-directory: functions
# Set up environment
- name: Create DEV environment files
if: |
github.base_ref == 'development' &&
steps.changed-files.outputs.any_changed == 'true'
run: |
echo -e "${{ secrets.DOTENV_DEVELOPMENT }}" > .env
echo -e "\nVITE_useEmulator=true" >> .env
echo -e "${{ secrets.FUNCTIONS_DOTENV_DEVELOPMENT }}" > functions/.env.development
# cd functions && npm run use:dev # no need to run this, since we're not deploying functions
- name: Create PROD environment files
if: |
github.base_ref == 'main' &&
steps.changed-files.outputs.any_changed == 'true'
run: |
echo -e "${{ secrets.DOTENV_PRODUCTION }}" > .env
echo -e "\nVITE_useEmulator=true" >> .env
echo -e "${{ secrets.FUNCTIONS_DOTENV_PRODUCTION }}" > functions/.env.production
# cd functions && npm run use:prod # no need to run this, since we're not deploying functions
# Prep env for deployment
- name: Remove dev variables pre build
if: steps.changed-files.outputs.any_changed == 'true'
run: |
sed -i 's/^REACT_APP_useEmulator=.*$//g' .env
sed -i 's/^REACT_APP_APPCHECK_DEBUG_TOKEN=.*$//g' .env
sed -i 's/^VITE_APPCHECK_DEBUG_TOKEN=.*$//g' .env
sed -i 's/^VITE_useEmulator=.*$//g' .env
# If all went well, build and generate a preview link
- name: Build website files
if: steps.changed-files.outputs.any_changed == 'true'
env:
NODE_ENV: production
CI: false
run: npm run build
- name: Deploy frontend to DEV preview channel
if: |
github.base_ref == 'development' &&
steps.changed-files.outputs.any_changed == 'true'
uses: FirebaseExtended/action-hosting-deploy@v0
with:
repoToken: "${{ secrets.GITHUB_TOKEN }}"
firebaseServiceAccount: "${{ secrets.SERVICE_ACCOUNT_DEVELOPMENT }}"
expires: 30d
projectId: development
- name: Deploy frontend to PROD preview channel
if: |
github.base_ref == 'main' &&
steps.changed-files.outputs.any_changed == 'true'
uses: FirebaseExtended/action-hosting-deploy@v0
with:
repoToken: "${{ secrets.GITHUB_TOKEN }}"
firebaseServiceAccount: "${{ secrets.SERVICE_ACCOUNT_PRODUCTION }}"
expires: 30d
projectId: production