-
Notifications
You must be signed in to change notification settings - Fork 52
107 lines (102 loc) · 3.3 KB
/
ci.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
name: CI/CD
on:
workflow_dispatch:
push:
branches:
- master
tags:
- "v*.*.*"
pull_request:
branches:
- master
jobs:
setup:
name: Setup environment & Install Dependencies
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Cache Node modules
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
- name: Install dependencies
run: npm install
format:
name: Format
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Cache Node modules
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
- name: Install dependencies
run: npm install
- name: Check Code Formatting
run: npm run prettier
jest-test:
name: Jest Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install dependencies
run: npm install
- name: Transpile TypeScript files
run: tsc -p lib/common/tsconfig.json
- name: Run Jest Tests
run: npx jest --coverage --runInBand tests/regr-tests --silent
cypress-test:
name: Cypress Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install dependencies
run: npm install
- name: Transpile TypeScript files
run: tsc -p lib/common/tsconfig.json
- name: Run Cypress Test for Array MPC as a Service
run: |
echo "Running Cypress test: array-mpc-as-a-service"
node demos/array-mpc-as-a-service/server.js & echo $! > SERVER_PID
sleep 10
echo "Initiating three computational parties"
node demos/array-mpc-as-a-service/compute-party.js config.json &
node demos/array-mpc-as-a-service/compute-party.js config.json &
node demos/array-mpc-as-a-service/compute-party.js config.json &
sleep 5
echo "Running the cypress test for two input parties"
npx cypress run --config-file demos/cypress.config.ts --spec "demos/array-mpc-as-a-service/test.cy.ts"
kill $(cat SERVER_PID) || true
- name: Run Cypress Tests for Standard Tests
run: |
TESTS=("array-concat" "array-binary-search" "array-merge-sort" "array-substring" "array-bubble-sort" "array-shell-sort" "the-valentine-question" "array-shuffle")
for TEST in "${TESTS[@]}"
do
echo "Running Cypress test: $TEST"
node demos/support/server.ts & echo $! > SERVER_PID
sleep 5
npx cypress run --config-file demos/cypress.config.ts --spec "demos/$TEST/test.cy.ts"
kill $(cat SERVER_PID)
done