-
Notifications
You must be signed in to change notification settings - Fork 10
72 lines (69 loc) · 2.19 KB
/
survey-ui-test.yml
File metadata and controls
72 lines (69 loc) · 2.19 KB
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
# This workflow is used to the UI test on the Demo-Survey application.
name: Survey UI Test
on:
push:
branches: [ main ]
# We are not running on Pull Request, since we need the Google API Key
jobs:
build-and-test:
runs-on: ubuntu-latest
services:
postgres:
image: postgis/postgis
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
env:
POSTGRES_USER: testuser
POSTGRES_PASSWORD: testpassword
POSTGRES_DB: testdb
strategy:
matrix:
node-version: [24.x]
env:
PROJECT_CONFIG: ${{ github.workspace }}/example/demo_survey/config.js
PG_CONNECTION_STRING_PREFIX: postgres://testuser:testpassword@localhost:5432/
PG_DATABASE_PRODUCTION: testdb
GOOGLE_API_KEY: ${{ secrets.GOOGLE_API_KEY_GITHUB_PUBLIC }}
CI: true ## This is to make sure that the tests run in CI mode
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: copy env file
run: cp .env.example .env
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: yarn
- name: Compile
run: yarn compile
- name: Build Client bundle
run: yarn build:prod
# Skipped build:admin since we don't have UI for them at the moment
- name: Create DB
run: yarn setup && yarn migrate
env:
NODE_ENV: production
- name: Get Playwright config
run: cp packages/evolution-frontend/playwright-example.config.ts example/demo_survey/playwright.config.ts
- name: Start application
run: yarn start &
env:
NODE_ENV: production
- name: Run UI test
run: yarn test:ui
- name: Archive UI Test results
if: always()
uses: actions/upload-artifact@v4
with:
name: playwright-results-${{matrix.node-version}} # This is to make sure that the results are stored in a unique name
path: example/demo_survey/test-results
retention-days: 2
# End of automated UI tests