Skip to content

Commit 2c8deee

Browse files
authored
ci(*): check-package script fixes for node tests, import map fixes and clamped version of deno to 1.45.x, ci was pulling older. (#25)
1 parent fd4f4d0 commit 2c8deee

File tree

11 files changed

+11
-11
lines changed

11 files changed

+11
-11
lines changed

.github/workflows/core.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
environment: CI
1616
strategy:
1717
matrix:
18-
deno-version: [1.x.x]
18+
deno-version: [1.45.x]
1919
node-version: [ 22.x ]
2020
permissions:
2121
contents: read

.github/workflows/jetstream.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
environment: CI
1616
strategy:
1717
matrix:
18-
deno-version: [1.x.x]
18+
deno-version: [1.45.x]
1919

2020
steps:
2121
- name: Git Checkout JetStream

.github/workflows/kv.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
environment: CI
1616
strategy:
1717
matrix:
18-
deno-version: [1.x.x]
18+
deno-version: [1.45.x]
1919

2020
steps:
2121
- name: Git Checkout Kv

.github/workflows/npm_build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
test:
1515
strategy:
1616
matrix:
17-
deno-version: [ 1.44.4 ]
17+
deno-version: [ 1.45.x ]
1818
module: [ core, jetstream, kv, obj, services ]
1919
node-version: [22.x]
2020

.github/workflows/obj.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
environment: CI
1616
strategy:
1717
matrix:
18-
deno-version: [1.x.x]
18+
deno-version: [1.45.x]
1919

2020
steps:
2121
- name: Git Checkout Obj

.github/workflows/services.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
environment: CI
1616
strategy:
1717
matrix:
18-
deno-version: [1.x.x]
18+
deno-version: [1.45.x]
1919

2020
steps:
2121
- name: Git Checkout Services

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
test:
1515
strategy:
1616
matrix:
17-
deno-version: [ 1.44.4 ]
17+
deno-version: [ 1.45.x ]
1818
module: [ core, jetstream, kv, obj, services ]
1919

2020
name: test ${{matrix.module}} with local dependencies

.github/workflows/transport-node-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
test:
1515
strategy:
1616
matrix:
17-
deno-version: [ 1.44.4 ]
17+
deno-version: [ 1.45.x ]
1818
node-version: [ 22.x ]
1919

2020
name: test node transport with local dependencies

deno.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
"@nats-io/services/internal": "./services/src/internal_mod.ts"
6060
}
6161
},
62-
"workspaces": [
62+
"workspace": [
6363
"./transport-deno",
6464
"./core",
6565
"./jetstream",

jetstream/import_map.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"@nats-io/nkeys": "jsr:@nats-io/[email protected]",
44
"@nats-io/nuid": "jsr:@nats-io/[email protected]",
55
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-18",
6-
"@nats-io/jetstream/internal": "./src/internal_mod.ts",
6+
"@nats-io/nats-core/internal": "jsr:@nats-io/nats-core@~3.0.0-18/internal",
77
"test_helpers": "../test_helpers/mod.ts",
88
"@std/io": "jsr:@std/[email protected]"
99
}

transport-node/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"setup_win": "choco install deno",
4848
"cover:html": "/nyc report --reporter=html && open coverage/index.html",
4949
"coveralls": "shx mkdir -p ./coverage && nyc report --reporter=text-lcov > ./coverage/lcov.info",
50-
"check-package": "deno run --allow-all bin/check-bundle-version.ts",
50+
"check-package": "cd .. && deno run --allow-all bin/check-bundle-version.ts --module transport-node",
5151
"version": "deno run -A bin/update-transport-version.ts && git add transport-node/src/node_transport.ts",
5252
"postversion": "git push && git push --tags",
5353
"bump-qualifier": "npm version prerelease --no-commit-hooks --no-git-tag-version",

0 commit comments

Comments
 (0)