-
Notifications
You must be signed in to change notification settings - Fork 514
61 lines (56 loc) · 1.58 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
name: Test
on:
workflow_call:
inputs:
checkout-ref:
default: ''
required: false
type: string
fabric-version:
default: '2.2'
required: false
type: string
env:
FABRIC_VERSION: ${{ inputs.fabric-version }}
SOFTHSM2_CONF: ${{ github.workspace }}/test/ts-fixtures/hsm/softhsm2.conf
jobs:
test:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
node-version:
- 14
- 16
- 18
- 20
steps:
- uses: actions/checkout@v4
with:
ref: ${{ inputs.checkout-ref }}
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install SoftHSM
run: |
sudo apt-get install softhsm2
softhsm2-util --init-token --slot 0 --label "ForFabric" --pin 98765432 --so-pin 1234
- run: npm install
- name: Generate credentials
run: npm run installAndGenerateCerts
- name: Pull Fabric images
run: npm run pullFabricImages
- run: npm test
- name: "Archive unit test debug log"
if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.node-version }}-unit-test-debug.log
path: test/temp/debug.log
- name: "Archive scenario test debug log"
if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.node-version }}-cucumber-debug.log
path: test/temp/debugc.log