Skip to content

Commit 9e0f6c6

Browse files
committed
Fix pipeline
1 parent e5bd6fd commit 9e0f6c6

File tree

3 files changed

+5
-13
lines changed

3 files changed

+5
-13
lines changed

.github/workflows/build.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@ jobs:
3030
- name: Run overview showcase
3131
run: |
3232
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
3434
docker stop immudb
3535
- name: Run sql showcase
3636
run: |
3737
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
3939
docker stop immudb
4040
- name: Run zSet showcase
4141
run: |
4242
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
4444
docker stop immudb

immudb-node-showcase/src/overview-showcase.ts

-4
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,6 @@ import {
66
stream,
77
} from '@codenotary/immudb-node'
88

9-
10-
11-
12-
139
overviewSchowcase()
1410
.catch(console.error)
1511

immudb-node-showcase/src/sql-showcase.ts

+2-6
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,10 @@ import {
1313
stream,
1414
} from '@codenotary/immudb-node'
1515

16-
17-
18-
19-
20-
sqlSchowcase()
16+
sqlShowcase()
2117
.catch(console.error)
2218

23-
async function sqlSchowcase() {
19+
async function sqlShowcase() {
2420

2521
const client = new Client({
2622
host: '127.0.0.1',

0 commit comments

Comments
 (0)