-
Notifications
You must be signed in to change notification settings - Fork 0
139 lines (134 loc) · 4.18 KB
/
cypress-testing.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
# keep name short as it is displayed in readme badge
name: Cypress CI
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
env:
NODE_ENV: "test" # see: https://github.com/vercel/next.js/issues/55804#issuecomment-1735124191.
NEXT_PUBLIC_APP_ENV: "test"
DEBUG: "cypress:server:args"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
#address of services is the name of the service if both on containers and no port map needed
DATABASE_URL: "mysql://root:root@mysql-service/t3template"
NEXTAUTH_SECRET: ${{secrets.NEXTAUTH_SECRET}}
NEXTAUTH_URL: ${{vars.NEXTAUTH_URL}}
AUTH0_CLIENT_ID: ${{secrets.AUTH0_CLIENT_ID}}
AUTH0_CLIENT_SECRET: ${{secrets.AUTH0_CLIENT_SECRET}}
AUTH0_ISSUER: ${{vars.AUTH0_ISSUER}}
AUTH0_BASE_URL: ${{vars.AUTH0_BASE_URL}}
CYPRESS_DEMO_MAIL: ${{secrets.CYPRESS_DEMO_MAIL}}
CYPRESS_DEMO_PASSWORD: ${{secrets.CYPRESS_DEMO_PASSWORD}}
jobs:
install:
runs-on: ubuntu-latest
container:
image: cypress/browsers:latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: install pnpm
uses: pnpm/action-setup@v2
- name: Cypress install
uses: cypress-io/github-action@v5
with:
build: pnpm build
runTests: false
- name: Save build folder
uses: actions/upload-artifact@v4
with:
name: build
if-no-files-found: error
path: .next
ui-chrome-tests:
needs: install
runs-on: ubuntu-latest
services:
mysql-service:
image: mysql:latest
env:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: t3template
ports:
- 3306:3306
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
container:
image: cypress/browsers:latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: install pnpm
uses: pnpm/action-setup@v2
- name: Download the build folders
uses: actions/download-artifact@v4
with:
name: build
path: .next
- name: "UI Tests - Chrome"
uses: cypress-io/github-action@v6
with:
# use build step to seed the database, build is already done in install job
build: pnpm prisma db push && pnpm prisma db seed
start: pnpm start
wait-on: "http://localhost:3000"
wait-on-timeout: 120
browser: chrome
config-file: cypress.config.ts
ui-chrome-mobile-tests:
needs: install
runs-on: ubuntu-latest
services:
mysql-service:
image: mysql:latest
env:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: t3template
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
container:
image: cypress/browsers:latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: install pnpm
uses: pnpm/action-setup@v2
- name: Download the build folders
uses: actions/download-artifact@v4
with:
name: build
path: .next
- name: "UI Tests - Chrome - Mobile"
uses: cypress-io/github-action@v6
with:
config: "viewportWidth=375,viewportHeight=667"
# use build step to seed the database, build is already done in install job
build: pnpm prisma db push && pnpm prisma db seed
start: pnpm start
wait-on: "http://localhost:3000"
wait-on-timeout: 120
browser: chrome
config-file: cypress.config.ts
component-testing:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: install pnpm
uses: pnpm/action-setup@v2
- name: Run Component Testing
uses: cypress-io/github-action@v6
with:
component: true
config-file: cypress.config.ts
unit-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: install pnpm
uses: pnpm/action-setup@v2
- name: install dependencies
run: pnpm install
- name: Run Unit Tests
run: pnpm test