-
Notifications
You must be signed in to change notification settings - Fork 0
71 lines (53 loc) · 1.39 KB
/
test.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: All tests
on:
push:
branches: ["main", "prod"]
pull_request:
branches: ["main", "prod"]
jobs:
checkSignerNode:
strategy:
fail-fast: true
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Install bun
uses: oven-sh/setup-bun@v1
- name: Install dependencies
run: bun i
- name: Build exposureReportWorker
run: make build/exposureReportWorker.js
- name: Build humanIDWorker
run: make build/humanIDWorker.js
- name: Build oauth2Worker
run: make build/oauth2Worker.js
- name: Build nkoWorker
run: make build/nkoWorker.js
- name: Build signerNode
run: make build/signerNode.js
checkLightNode:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Install bun
uses: oven-sh/setup-bun@v1
- name: Install dependencies
run: bun i
- name: Build lightNode
run: make build/lightNode.js
runUnitTests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Install bun
uses: oven-sh/setup-bun@v1
- name: Install dependencies
run: bun i
- name: Run Mina unit tests
run: make mina.test