forked from freeCodeCamp/freeCodeCamp
-
Notifications
You must be signed in to change notification settings - Fork 0
170 lines (146 loc) · 5.51 KB
/
temporary-container-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
# TODO: remove this workflow once we use containers in the other workflows. This
# workflow is intended to prevent regressions until that has been achieved.
name: CI - E2E - Containers
on:
workflow_dispatch:
workflow_run:
workflows: ['CI - Node.js']
types:
- completed
# TODO: refactor with a workflow_call
pull_request:
paths-ignore:
- 'docs/**'
branches:
- 'main'
- 'next-**'
- 'e2e-**'
jobs:
build-client:
name: Build Client (Container)
runs-on: ubuntu-22.04
strategy:
matrix:
node-version: [20.x]
steps:
- name: Checkout Source Files
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
- name: Create Image
run: |
docker build \
--build-arg HOME_LOCATION=http://localhost:8000 \
--build-arg API_LOCATION=http://localhost:3000 \
--build-arg FORUM_LOCATION=https://forum.freecodecamp.org \
--build-arg NEWS_LOCATION=https://www.freecodecamp.org/news \
--build-arg RADIO_LOCATION=https://coderadio.freecodecamp.org \
--build-arg CLIENT_LOCALE=english \
--build-arg CURRICULUM_LOCALE=english \
--build-arg SHOW_LOCALE_DROPDOWN_MENU=false \
--build-arg ALGOLIA_APP_ID=app_id_from_algolia_dashboard \
--build-arg ALGOLIA_API_KEY=api_key_from_algolia_dashboard \
--build-arg STRIPE_PUBLIC_KEY=pk_from_stripe_dashboard \
--build-arg PAYPAL_CLIENT_ID=id_from_paypal_dashboard \
--build-arg PATREON_CLIENT_ID=id_from_patreon_dashboard \
--build-arg DEPLOYMENT_ENV=staging \
--build-arg SHOW_UPCOMING_CHANGES=false \
--build-arg SHOW_NEW_CURRICULUM=true \
--build-arg GROWTHBOOK_URI=api_URI_from_Growthbook_dashboard \
--build-arg FREECODECAMP_NODE_ENV=development \
-t fcc-client \
-f docker/web/Dockerfile .
- name: Save Image
run: docker save fcc-client > client-artifact.tar
- name: Upload Client Artifact
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3
with:
name: client-artifact
path: client-artifact.tar
# TODO: Figure out what to do with the webpack stats file. Create it
# during the build via a mounted host directory? i.e. docker build -t
# myimage -v /path/on/host:/output/dir -f Dockerfile . It's important to
# ensure it doesn't end up in the final image, as it's a large file.
# - name: Upload Webpack Stats
# uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3
# with:
# name: webpack-stats
# path: client/public/stats.json
build-api:
name: Build Api (Container)
runs-on: ubuntu-22.04
strategy:
matrix:
node-version: [20.x]
steps:
- name: Checkout Source Files
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
- name: Create Image
run: |
docker build \
-t fcc-api \
-f docker/api/Dockerfile .
- name: Save Image
run: docker save fcc-api > api-artifact.tar
- name: Upload Api Artifact
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3
with:
name: api-artifact
path: api-artifact.tar
build-new-api:
name: Build New Api (Container)
runs-on: ubuntu-22.04
strategy:
matrix:
node-version: [20.x]
steps:
- name: Checkout Source Files
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
- name: Create Image
run: |
docker build \
-t fcc-new-api \
-f docker/new-api/Dockerfile .
cypress-run:
name: Test
runs-on: ubuntu-22.04
needs: [build-client, build-api]
strategy:
fail-fast: false
matrix:
# To avoid wasting resources we're only using chrome for now.
browsers: [chrome]
node-version: [20.x]
steps:
- name: Set Action Environment Variables
run: |
echo "CYPRESS_RECORD_KEY=${{ secrets.CYPRESS_RECORD_KEY }}" >> $GITHUB_ENV
echo "GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}" >> $GITHUB_ENV
- name: Checkout Source Files
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
- uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3
# Cypress calls some pnpm scripts, so we need to install pnpm.
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7 # v3
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: pnpm install
- name: Load Images
run: |
docker load < client-artifact/client-artifact.tar
docker load < api-artifact/api-artifact.tar
- name: Set freeCodeCamp Environment Variables (needed by api)
run: cp sample.env .env
- name: Cypress run
uses: cypress-io/github-action@v6
with:
record: ${{ env.CYPRESS_RECORD_KEY != 0 }}
start: docker compose up -d
wait-on: http://localhost:8000, http://localhost:3000
wait-on-timeout: 1200
config: baseUrl=http://localhost:8000
browser: ${{ matrix.browsers }}
spec: ${{ matrix.spec }}