forked from ustaxcourt/ef-cms
-
Notifications
You must be signed in to change notification settings - Fork 10
55 lines (52 loc) · 1.52 KB
/
e2e-cypress-smoketests-local.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
name: E2E Cypress Smoketests Local
on:
pull_request:
jobs:
e2e_cypress_smoketests_local:
runs-on: ubuntu-latest
env:
CI: true
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20.14.0'
- name: Configure sysctl limits
run: |
sudo swapoff -a
sudo sysctl -w vm.swappiness=1
sudo sysctl -w fs.file-max=262144
sudo sysctl -w vm.max_map_count=262144
- 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: Run E2E Cypress Smoketests
run: |
mkdir -p /tmp/cypress/
npm run start:all:ci >> /tmp/cypress/cypress-output.txt &
./wait-until-services.sh
sleep 5
npm run cypress:smoketests:local
- name: Store Cypress Failure Videos
if: always()
uses: actions/upload-artifact@v4
with:
name: cypress-videos
path: ${{ github.workspace }}/cypress/deployed-and-local/videos
- name: Store Logs
uses: actions/upload-artifact@v4
with:
name: cypress-logs
path: /tmp/cypress