File tree 3 files changed +5
-13
lines changed
3 files changed +5
-13
lines changed Original file line number Diff line number Diff line change @@ -30,15 +30,15 @@ jobs:
30
30
- name : Run overview showcase
31
31
run : |
32
32
docker run -d --rm --health-cmd "immuadmin status" --health-interval 10s --health-timeout 5s --health-retries 5 -p 3322:3322 --name immudb codenotary/immudb:1.4.1
33
- npx ts-node --esm ./immudb-node-showcase/src/overview-showcase.ts
33
+ npx tsx ./immudb-node-showcase/src/overview-showcase.ts
34
34
docker stop immudb
35
35
- name : Run sql showcase
36
36
run : |
37
37
docker run -d --rm --health-cmd "immuadmin status" --health-interval 10s --health-timeout 5s --health-retries 5 -p 3322:3322 --name immudb codenotary/immudb:1.4.1
38
- npx ts-node --esm ./immudb-node-showcase/src/sql-showcase.ts
38
+ npx tsx ./immudb-node-showcase/src/sql-showcase.ts
39
39
docker stop immudb
40
40
- name : Run zSet showcase
41
41
run : |
42
42
docker run -d --rm --health-cmd "immuadmin status" --health-interval 10s --health-timeout 5s --health-retries 5 -p 3322:3322 --name immudb codenotary/immudb:1.4.1
43
- npx ts-node --esm ./immudb-node-showcase/src/zSet-showcase.ts
43
+ npx tsx ./immudb-node-showcase/src/zSet-showcase.ts
44
44
docker stop immudb
Original file line number Diff line number Diff line change @@ -6,10 +6,6 @@ import {
6
6
stream ,
7
7
} from '@codenotary/immudb-node'
8
8
9
-
10
-
11
-
12
-
13
9
overviewSchowcase ( )
14
10
. catch ( console . error )
15
11
Original file line number Diff line number Diff line change @@ -13,14 +13,10 @@ import {
13
13
stream ,
14
14
} from '@codenotary/immudb-node'
15
15
16
-
17
-
18
-
19
-
20
- sqlSchowcase ( )
16
+ sqlShowcase ( )
21
17
. catch ( console . error )
22
18
23
- async function sqlSchowcase ( ) {
19
+ async function sqlShowcase ( ) {
24
20
25
21
const client = new Client ( {
26
22
host : '127.0.0.1' ,
You can’t perform that action at this time.
0 commit comments