Skip to content

Commit ffb08fe

Browse files
committed
ci: test with node 22
1 parent 400dd2e commit ffb08fe

File tree

15 files changed

+47
-47
lines changed

15 files changed

+47
-47
lines changed

.github/workflows/nodejs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
node-version: [16.x, 18.x, 20.x]
15+
node-version: [16.x, 18.x, 20.x, 22.x]
1616
steps:
1717
- uses: actions/checkout@v2
1818
- name: Use Node.js ${{ matrix.node-version }}

demo/browser/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"require": [
1414
"should"
1515
],
16-
"throw-deprecation": true,
16+
"throw-deprecation": false,
1717
"timeout": 40000
1818
},
1919
"scripts": {

demo/cjs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"should",
2727
"coffeescript/register"
2828
],
29-
"throw-deprecation": true,
29+
"throw-deprecation": false,
3030
"timeout": 40000
3131
},
3232
"scripts": {

demo/esm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"require": [
2323
"should"
2424
],
25-
"throw-deprecation": true,
25+
"throw-deprecation": false,
2626
"timeout": 40000
2727
},
2828
"scripts": {

demo/issues-cjs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"should",
2222
"coffeescript/register"
2323
],
24-
"throw-deprecation": true,
24+
"throw-deprecation": false,
2525
"timeout": 40000
2626
},
2727
"scripts": {

demo/issues-esm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"require": [
2020
"should"
2121
],
22-
"throw-deprecation": true,
22+
"throw-deprecation": false,
2323
"timeout": 40000
2424
},
2525
"scripts": {

demo/ts-esm-node16/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"require": [
2828
"should"
2929
],
30-
"throw-deprecation": true,
30+
"throw-deprecation": false,
3131
"timeout": 40000
3232
},
3333
"scripts": {

packages/csv-generate/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
"require": [
8484
"should"
8585
],
86-
"throw-deprecation": true,
86+
"throw-deprecation": false,
8787
"timeout": 40000
8888
},
8989
"repository": {

packages/csv-parse/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
"require": [
9898
"should"
9999
],
100-
"throw-deprecation": true,
100+
"throw-deprecation": false,
101101
"timeout": 40000
102102
},
103103
"repository": {

packages/csv-stringify/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
"require": [
7474
"should"
7575
],
76-
"throw-deprecation": true,
76+
"throw-deprecation": false,
7777
"timeout": 40000
7878
},
7979
"repository": {

0 commit comments

Comments
 (0)