Skip to content

Commit

Permalink
[BUMP] CI dependencies/version
Browse files Browse the repository at this point in the history
  • Loading branch information
aricart committed Nov 10, 2023
1 parent 90ae5f5 commit 51d1ab9
Show file tree
Hide file tree
Showing 8 changed files with 1,357 additions and 581 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/jwtjs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
test:
strategy:
matrix:
deno-version: [1.30.0]
deno-version: [1.36.4]
environment: CI
runs-on: ubuntu-latest
steps:
Expand Down
42 changes: 42 additions & 0 deletions .github/workflows/npm.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: nats-jwt NPM release

on:
release:
types: [created]

jobs:
test:
strategy:
matrix:
node-version: [20.x]
deno-version: [1.36.4]

runs-on: ubuntu-latest
permissions:
contents: read
id-token: write

steps:
- name: Checkout nkeys.js
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
registry-url: "https://registry.npmjs.org"
- name: Use Deno Version ${{ matrix.deno-version }}
uses: denoland/setup-deno@v1
with:
deno-version: ${{ matrix.deno-version }}
- run: npm install -g npm
- run: npm ci
- name: Set tag
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
- run: npm run clean
- run: npm publish --provenance --access public --tag=next
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}


10 changes: 3 additions & 7 deletions deno.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,11 @@
{
"imports": {
"std/": "https://deno.land/std@0.177.0/"
"std/": "https://deno.land/std@0.206.0/"
},
"lint": {
"files": {
"exclude": ["docs/", "lib/", "esm/jwt.js", "debug/", "cjs/", "cjs_src/"]
}
"exclude": ["docs/", "lib/", "esm/jwt.js", "debug/", "cjs/", "cjs_src/"]
},
"fmt": {
"files": {
"exclude": ["docs/", "lib/", "esm/jwt.js", "debug/", "cjs/", "cjs_src/"]
}
"exclude": ["docs/", "lib/", "esm/jwt.js", "debug/", "cjs/", "cjs_src/"]
}
}
133 changes: 132 additions & 1 deletion deno.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dependencies.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
This file lists the dependencies used in this repository.

| Dependency | License |
|---------------------------------------------|------------|
| ------------------------------------------- | ---------- |
| https://github.com/nats-io/nkeys.js@1.0.0-5 | Apache-2.0 |
| Dev Dependencies | |
| @types/node | MIT |
Expand Down
Loading

0 comments on commit 51d1ab9

Please sign in to comment.