-
Notifications
You must be signed in to change notification settings - Fork 47
61 lines (58 loc) · 1.57 KB
/
e2e-cypress-public.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
name: E2E Cypress Public
on:
pull_request:
jobs:
e2e_cypress_public:
runs-on: ubuntu-latest
env:
CI: true
CHECK_DEPLOY_DATE_INTERVAL: 5000
services:
postgres:
image: postgres
env:
POSTGRES_PASSWORD: example
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20.14.0'
- name: Setup OpenSearch
uses: ankane/setup-opensearch@v1
with:
opensearch-version: 2.11
- name: Setup DynamoDB Local
uses: rrainn/[email protected]
with:
port: 8000
cors: '*'
- name: Collect Workflow Telemetry
uses: runforesight/workflow-telemetry-action@v2
with:
comment_on_pr: false
- name: Install Node Dependencies
run: npm ci
- name: Setup Postgres
run: |
npm run migration:postgres
npm run seed:postgres
- name: Run E2E Cypress
run: |
mkdir -p /tmp/cypress/
npm run start:all:ci >> /tmp/cypress/cypress-output.txt &
./wait-until-services.sh
sleep 5
npm run cypress:integration:public
- name: Store Cypress Failure Videos
if: always()
uses: actions/upload-artifact@v4
with:
name: cypress-videos
path: ${{ github.workspace }}/cypress/local-only/videos