Skip to content

Commit

Permalink
ci(*): check-package script fixes for node tests, import map fixes an…
Browse files Browse the repository at this point in the history
…d clamped version of deno to 1.45.x, ci was pulling older.
  • Loading branch information
aricart committed Jul 26, 2024
1 parent fd4f4d0 commit a8d442a
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
environment: CI
strategy:
matrix:
deno-version: [1.x.x]
deno-version: [1.45.x]
node-version: [ 22.x ]
permissions:
contents: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/jetstream.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
environment: CI
strategy:
matrix:
deno-version: [1.x.x]
deno-version: [1.45.x]

steps:
- name: Git Checkout JetStream
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/kv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
environment: CI
strategy:
matrix:
deno-version: [1.x.x]
deno-version: [1.45.x]

steps:
- name: Git Checkout Kv
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/npm_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
test:
strategy:
matrix:
deno-version: [ 1.44.4 ]
deno-version: [ 1.45.x ]
module: [ core, jetstream, kv, obj, services ]
node-version: [22.x]

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/obj.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
environment: CI
strategy:
matrix:
deno-version: [1.x.x]
deno-version: [1.45.x]

steps:
- name: Git Checkout Obj
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/services.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
environment: CI
strategy:
matrix:
deno-version: [1.x.x]
deno-version: [1.45.x]

steps:
- name: Git Checkout Services
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
test:
strategy:
matrix:
deno-version: [ 1.44.4 ]
deno-version: [ 1.45.x ]
module: [ core, jetstream, kv, obj, services ]

name: test ${{matrix.module}} with local dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/transport-node-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
test:
strategy:
matrix:
deno-version: [ 1.44.4 ]
deno-version: [ 1.45.x ]
node-version: [ 22.x ]

name: test node transport with local dependencies
Expand Down
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"@nats-io/services/internal": "./services/src/internal_mod.ts"
}
},
"workspaces": [
"workspace": [
"./transport-deno",
"./core",
"./jetstream",
Expand Down
2 changes: 1 addition & 1 deletion jetstream/import_map.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"@nats-io/nkeys": "jsr:@nats-io/[email protected]",
"@nats-io/nuid": "jsr:@nats-io/[email protected]",
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-18",
"@nats-io/jetstream/internal": "./src/internal_mod.ts",
"@nats-io/nats-core/internal": "jsr:@nats-io/nats-core@~3.0.0-18/internal",
"test_helpers": "../test_helpers/mod.ts",
"@std/io": "jsr:@std/[email protected]"
}
Expand Down
2 changes: 1 addition & 1 deletion transport-node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"setup_win": "choco install deno",
"cover:html": "/nyc report --reporter=html && open coverage/index.html",
"coveralls": "shx mkdir -p ./coverage && nyc report --reporter=text-lcov > ./coverage/lcov.info",
"check-package": "deno run --allow-all bin/check-bundle-version.ts",
"check-package": "cd .. && deno run --allow-all bin/check-bundle-version.ts --module transport-node",
"version": "deno run -A bin/update-transport-version.ts && git add transport-node/src/node_transport.ts",
"postversion": "git push && git push --tags",
"bump-qualifier": "npm version prerelease --no-commit-hooks --no-git-tag-version",
Expand Down

0 comments on commit a8d442a

Please sign in to comment.