File tree Expand file tree Collapse file tree 4 files changed +8
-6
lines changed Expand file tree Collapse file tree 4 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 52
52
fail-fast : false
53
53
matrix :
54
54
node_version :
55
- - 18
56
55
- 20
57
56
- 22
57
+ - 24
58
58
steps :
59
59
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
60
60
- name : Use Node.js ${{ matrix.node_version }}
74
74
- browser
75
75
steps :
76
76
- run : exit 1
77
- if : ${{ needs.lint.result != 'success' || needs.node.result != 'success' || needs.browser.result != 'success' || needs.deno.result != 'success' }}
77
+ if :
78
+ ${{ needs.lint.result != 'success' || needs.node.result != 'success' ||
79
+ needs.browser.result != 'success' || needs.deno.result != 'success' }}
78
80
- run : echo ok
79
81
if : ${{ always() }}
Original file line number Diff line number Diff line change 73
73
]
74
74
},
75
75
"engines" : {
76
- "node" : " >= 18 "
76
+ "node" : " >= 20 "
77
77
}
78
78
}
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ async function main() {
30
30
outdir : "pkg/dist-node" ,
31
31
bundle : true ,
32
32
platform : "node" ,
33
- target : "node18 " ,
33
+ target : "node20 " ,
34
34
format : "esm" ,
35
35
...sharedOptions ,
36
36
} ) ,
Original file line number Diff line number Diff line change 1
1
import { bench , describe } from "vitest" ;
2
- import { verify as verifyNode } from "../src/index.ts" ;
3
- import { verify as verifyWeb } from "../src/web.ts" ;
2
+ import { sign as signNode } from "../src/index.ts" ;
3
+ import { sign as signWeb } from "../src/web.ts" ;
4
4
import { toNormalizedJsonString } from "./common.ts" ;
5
5
6
6
describe ( "sign" , ( ) => {
You can’t perform that action at this time.
0 commit comments