-
Notifications
You must be signed in to change notification settings - Fork 0
203 lines (195 loc) · 6.66 KB
/
production.yaml
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
name: Production Deployment
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
SUPABASE_ACCESS_TOKEN: ${{ secrets.SUPABASE_ACCESS_TOKEN }}
SUPABASE_DB_PASSWORD: ${{ secrets.SUPABASE_DB_PASSWORD }}
PROJECT_ID: cwlieuwgmwcsbydffhja
on:
push:
branches: [main]
jobs:
Build:
runs-on: ubuntu-latest
environment: Production
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'npm'
- name: 'Cache Build'
uses: actions/cache@v3
with:
path: |
${{ github.workspace }}/node_modules
${{ github.workspace }}/.vercel/output
key: ${{ runner.os }}-build-prod-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('**/*.[jt]s', '**/*.[jt]sx') }}
restore-keys: |
${{ runner.os }}-build-prod-${{ hashFiles('**/package-lock.json') }}-
${{ runner.os }}-build-prod-
- name: Install Vercel CLI
run: npm install --global vercel@latest
- name: Pull Vercel Environment Information
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
- name: Build Project Artifacts
run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}
BuildTest:
runs-on: ubuntu-latest
environment: Test
env:
NODE_ENV: test
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'npm'
- name: 'Cache Build'
uses: actions/cache@v3
with:
path: |
${{ github.workspace }}/node_modules
${{ github.workspace }}/.cache/Cypress
${{ github.workspace }}/.next
key: ${{ runner.os }}-build-prod-test-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('**/*.[jt]s', '**/*.[jt]sx') }}
restore-keys: |
${{ runner.os }}-build-prod-test-${{ hashFiles('**/package-lock.json') }}-
${{ runner.os }}-build-prod-test-
- name: Install dependencies
run: npm ci
- name: Build Test
run: npm run build
Migrate:
runs-on: ubuntu-latest
environment: Production
needs: Build
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'npm'
- name: 'Restore Cache Build'
uses: actions/cache@v3
with:
path: |
${{ github.workspace }}/node_modules
${{ github.workspace }}/.vercel/output
key: ${{ runner.os }}-build-prod-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('**/*.[jt]s', '**/*.[jt]sx') }}
restore-keys: |
${{ runner.os }}-build-prod-${{ hashFiles('**/package-lock.json') }}-
${{ runner.os }}-build-prod-
- uses: supabase/setup-cli@v1
with:
version: 1.83.7
- name: Supabase Link Project
run: supabase link --project-ref $PROJECT_ID
- name: Supabase Migrate
run: npx supabase db push
- name: Deploy Migration
run: npx prisma migrate deploy
env:
DATABASE_URL: ${{ secrets.DATABASE_URL }}
UnitTests:
runs-on: ubuntu-latest
environment: Test
needs: BuildTest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'npm'
- name: 'Restore Cache Build'
uses: actions/cache@v3
with:
path: |
${{ github.workspace }}/node_modules
${{ github.workspace }}/.cache/Cypress
${{ github.workspace }}/.next
key: ${{ runner.os }}-build-prod-test-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('**/*.[jt]s', '**/*.[jt]sx') }}
restore-keys: |
${{ runner.os }}-build-prod-test-${{ hashFiles('**/package-lock.json') }}-
${{ runner.os }}-build-prod-test-
- name: Unit tests
run: npm run test
E2ETests:
runs-on: ubuntu-latest
environment: Test
needs: BuildTest
env:
NODE_ENV: test
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'npm'
- name: 'Restore Cache Build'
uses: actions/cache@v3
with:
path: |
${{ github.workspace }}/node_modules
${{ github.workspace }}/.cache/Cypress
${{ github.workspace }}/.next
key: ${{ runner.os }}-build-preview-test-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('**/*.[jt]s', '**/*.[jt]sx') }}
restore-keys: |
${{ runner.os }}-build-preview-test-${{ hashFiles('**/package-lock.json') }}-
${{ runner.os }}-build-preview-test-
- uses: supabase/setup-cli@v1
with:
version: 1.83.7
- name: Start Supabase
run: supabase start -x studio,inbucket,logflare
- name: Supabase Migrate
run: npx supabase migration up
- name: Prisma Migrate
run: npx prisma migrate dev
env:
DATABASE_URL: ${{ secrets.DATABASE_URL }}
- name: Install Cypress Binaries
run: npm i cypress
- name: Run E2E test suit
uses: cypress-io/github-action@v5
with:
install: false
start: npm start
command: npm run test:e2e
browser: chrome
Deploy:
runs-on: ubuntu-latest
environment: Production
needs: [Build, Migrate, UnitTests]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'npm'
- name: Pull Vercel Environment Information
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
- name: 'Restore Cache Build'
uses: actions/cache@v3
with:
path: |
${{ github.workspace }}/node_modules
${{ github.workspace }}/.vercel/output
key: ${{ runner.os }}-build-prod-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('**/*.[jt]s', '**/*.[jt]sx') }}
restore-keys: |
${{ runner.os }}-build-prod-${{ hashFiles('**/package-lock.json') }}-
${{ runner.os }}-build-prod-
- name: Deploy Project Artifacts
run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}