-
Notifications
You must be signed in to change notification settings - Fork 6
181 lines (181 loc) · 8.09 KB
/
unit.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
jobs:
unit:
concurrency:
cancel-in-progress: true
group: ${{ github.head_ref }}-unit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
run_install: false
version: latest
- name: Get pnpm store directory
id: pnpm-cache
run: echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
shell: bash
- name: Cache pnpm modules
uses: actions/cache@v4
with:
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
restore-keys: ${{ runner.os }}-pnpm-
- name: Cache lerna
uses: actions/cache@v4
with:
key: ${{ runner.os }}-lerna
path: ./.cache
restore-keys: ${{ runner.os }}-lerna-
- name: Install dependencies
run: pnpm install
- name: Build
run: pnpm run build
- name: Test api
run: cd packages/api && pnpm run test
- name: Test api-common
run: cd packages/api-common && pnpm run test
- name: Test api-database
run: cd packages/api-database && pnpm run test
- name: Test api-development
run: cd packages/api-development && pnpm run test
- name: Test api-evm
run: cd packages/api-evm && pnpm run test
- name: Test api-http
run: cd packages/api-http && pnpm run test
- name: Test api-sync
run: cd packages/api-sync && pnpm run test
- name: Test api-transaction-pool
run: cd packages/api-transaction-pool && pnpm run test
- name: Test bootstrap
run: cd packages/bootstrap && pnpm run test
- name: Test cli
run: cd packages/cli && pnpm run test
- name: Test configuration-generator
run: cd packages/configuration-generator && pnpm run test
# - name: Test consensus
# run: cd packages/consensus && pnpm run test
- name: Test consensus-storage
run: cd packages/consensus-storage && pnpm run test
- name: Test container
run: cd packages/container && pnpm run test
- name: Test contracts
run: cd packages/contracts && pnpm run test
- name: Test core
run: cd packages/core && pnpm run test
- name: Test crypto-address-base58
run: cd packages/crypto-address-base58 && pnpm run test
- name: Test crypto-address-keccak256
run: cd packages/crypto-address-keccak256 && pnpm run test
- name: Test crypto-block
run: cd packages/crypto-block && pnpm run test
- name: Test crypto-commit
run: cd packages/crypto-commit && pnpm run test
- name: Test crypto-config
run: cd packages/crypto-config && pnpm run test
- name: Test crypto-consensus-bls12-381
run: cd packages/crypto-consensus-bls12-381 && pnpm run test
- name: Test crypto-hash-bcrypto
run: cd packages/crypto-hash-bcrypto && pnpm run test
- name: Test crypto-key-pair-bls12-381
run: cd packages/crypto-key-pair-bls12-381 && pnpm run test
- name: Test crypto-key-pair-ecdsa
run: cd packages/crypto-key-pair-ecdsa && pnpm run test
- name: Test crypto-key-pair-ed25519
run: cd packages/crypto-key-pair-ed25519 && pnpm run test
- name: Test crypto-key-pair-schnorr
run: cd packages/crypto-key-pair-schnorr && pnpm run test
- name: Test crypto-messages
run: cd packages/crypto-messages && pnpm run test
- name: Test crypto-signature-bls12-381
run: cd packages/crypto-signature-bls12-381 && pnpm run test
- name: Test crypto-signature-ecdsa
run: cd packages/crypto-signature-ecdsa && pnpm run test
- name: Test crypto-signature-schnorr
run: cd packages/crypto-signature-schnorr && pnpm run test
- name: Test crypto-transaction
run: cd packages/crypto-transaction && pnpm run test
- name: Test crypto-transaction-evm-call
run: cd packages/crypto-transaction-evm-call && pnpm run test
- name: Test crypto-validation
run: cd packages/crypto-validation && pnpm run test
- name: Test crypto-wif
run: cd packages/crypto-wif && pnpm run test
- name: Test crypto-worker
run: cd packages/crypto-worker && pnpm run test
- name: Test database
run: cd packages/database && pnpm run test
# - name: Test evm
# run: cd packages/evm && pnpm run test
- name: Test evm-api-worker
run: cd packages/evm-api-worker && pnpm run test
- name: Test evm-consensus
run: cd packages/evm-consensus && pnpm run test
- name: Test evm-development
run: cd packages/evm-development && pnpm run test
- name: Test evm-gas-fee
run: cd packages/evm-gas-fee && pnpm run test
- name: Test evm-service
run: cd packages/evm-service && pnpm run test
- name: Test evm-state
run: cd packages/evm-state && pnpm run test
- name: Test kernel
run: cd packages/kernel && pnpm run test
- name: Test logger-pino
run: cd packages/logger-pino && pnpm run test
- name: Test logger-winston
run: cd packages/logger-winston && pnpm run test
- name: Test networking-dns
run: cd packages/networking-dns && pnpm run test
- name: Test networking-ntp
run: cd packages/networking-ntp && pnpm run test
- name: Test p2p
run: cd packages/p2p && pnpm run test
- name: Test processor
run: cd packages/processor && pnpm run test
- name: Test serializer
run: cd packages/serializer && pnpm run test
# - name: Test state
# run: cd packages/state && pnpm run test
- name: Test test-framework
run: cd packages/test-framework && pnpm run test
- name: Test test-runner
run: cd packages/test-runner && pnpm run test
- name: Test test-transaction-builders
run: cd packages/test-transaction-builders && pnpm run test
- name: Test transaction-pool-broadcaster
run: cd packages/transaction-pool-broadcaster && pnpm run test
- name: Test transaction-pool-service
run: cd packages/transaction-pool-service && pnpm run test
- name: Test transaction-pool-worker
run: cd packages/transaction-pool-worker && pnpm run test
- name: Test transactions
run: cd packages/transactions && pnpm run test
- name: Test utils
run: cd packages/utils && pnpm run test
- name: Test validation
run: cd packages/validation && pnpm run test
# - name: Test validator
# run: cd packages/validator && pnpm run test
- name: Test webhooks
run: cd packages/webhooks && pnpm run test
strategy:
matrix:
node-version:
- 20.x
name: CI
on:
pull_request:
types:
- ready_for_review
- synchronize
- opened
push:
branches:
- main
- develop