-
Notifications
You must be signed in to change notification settings - Fork 5
64 lines (52 loc) · 1.59 KB
/
e2e-network.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
name: E2E:Network
on:
push:
jobs:
e2e-network:
if: "!contains(toJSON(github.event.commits.*.message), '[skip ci]')"
runs-on: ubuntu-latest
env:
DEBUG: cy2*,cypress:server:cloud:*,cypress:network:*
# prevent cypress ts-paths interfering with local imports
TS_NODE_PROJECT: dummy.ts.json
CYPRESS_API_URL: http://localhost:1234
# Service containers to run with `container-job`
services:
# Label used to access the service container
director:
# Docker Hub image
image: agoldis/sorry-cypress-director
ports:
- 1234:1234
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16'
cache: 'npm'
# remove cypress from peer dependecies
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: Start Upstream Proxy
run: |
npm run build-tunnel
node ./dist/tunnel-proxy.js &
- name: Record without upstream proxy
working-directory: ./e2e
run: |
../bin/cy2 run --parallel --record --key xxx
- name: Record with upstream proxy
working-directory: ./e2e
env:
HTTP_PROXY: https://localhost:9999
run: |
../bin/cy2 run --parallel --record --key xxx
- name: Bypass upstream proxy for director
env:
HTTP_PROXY: https://localhost:9999
NO_PROXY: localhost
working-directory: ./e2e
run: |
../bin/cy2 run --parallel --record --key xxx