-
Notifications
You must be signed in to change notification settings - Fork 14
71 lines (57 loc) · 1.88 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
name: Dev CI/CD
on:
push:
branches:
- 'master'
pull_request:
branches: [master]
jobs:
build:
name: Build and test of feature branch
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Show contexts
run: |
echo github.event_name: ${{ github.event_name }}
echo github.sha: ${{ github.sha }}
echo github.repository: ${{ github.repository }}
echo github.ref: ${{ github.ref }}
echo github.head_ref: ${{ github.head_ref }}
echo github.base_ref: ${{ github.base_ref }}
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
registry-url: "https://npm.pkg.github.com"
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Install, lint & build
run: |
yarn install
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: run node unit tests
run: |
npx mocha test/unit-tests/*.js
- name: run node integration test
run: |
npx mocha -t 1000000 test/integration/node.integration.test.js
- name: run gas integration test
run: |
npx mocha -t 1000000 test/integration/gas.integration.test.js
- name: run ida integration test
run: |
npx mocha -t 1000000 test/integration/ida.integration.test.js
- name: run cfa integration test
run: |
npx mocha -t 1000000 test/integration/cfa.integration.test.js
- name: run gda integration test
run: |
npx mocha -t 1000000 test/integration/gda.integration.test.js
- name: run batch liquidations integration test
run: |
npx mocha -t 1000000 test/integration/batch.integration.test.js