-
Notifications
You must be signed in to change notification settings - Fork 96
74 lines (62 loc) · 1.52 KB
/
mitm.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
name: Mitm
on:
pull_request:
types:
- opened
- reopened
- edited
- synchronize
workflow_dispatch:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04]
ghc: ['8.8.4']
spec:
- '0.16.1'
node:
- 20
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: npm install -g npm
- run: npm install
# build monorepo incl. each subpackage
- run: npm run build --workspaces --if-present
- uses: actions/setup-python@v2
with:
python-version: '3.11'
- run: pip3 install mitmproxy~=10.0.0
- uses: dfinity/setup-dfx@main
- name: running dfx
id: dfx
run: |
dfx start --background
- name: Running mitmdump
id: mitmdump
run: |
set -ex
mitmdump -p 8888 --mode reverse:https://icp-api.io \
--modify-headers '/~s/Transfer-Encoding/' \
--modify-body '/~s/Hello/Hullo' \
&
sleep 20
- name: mitm e2e
env:
CI: true
run: npm run mitm --workspaces --if-present
aggregate:
name: mitm:required
if: ${{ always() }}
needs: [test]
runs-on: ubuntu-latest
steps:
- name: check e2e test result
if: ${{ needs.test.result != 'success' }}
run: exit 1