Skip to content

Commit ea23426

Browse files
committed
ci: test node 14, 16 and 18
1 parent ddb9fab commit ea23426

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/nodejs.yml

Lines changed: 2 additions & 2 deletions
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]
15+
node-version: [16.x, 18.x]
1616
steps:
1717
- uses: actions/checkout@v2
1818
- name: Use Node.js ${{ matrix.node-version }}
@@ -25,7 +25,7 @@ jobs:
2525
runs-on: ubuntu-latest
2626
strategy:
2727
matrix:
28-
node-version: [12.x, 14.x]
28+
node-version: [14.x]
2929
steps:
3030
- uses: actions/checkout@v2
3131
- name: Use Node.js ${{ matrix.node-version }}

packages/csv-generate/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
"preversion": "npm run build && git add dist",
7878
"pretest": "npm run build",
7979
"test": "mocha 'test/**/*.{coffee,ts}'",
80-
"test:legacy": "mocha --loader=./test/loaders/legacy/all.js 'test/**/*.{coffee,ts}' --ignore test/api.web_stream.coffee"
80+
"test:legacy": "mocha --ignore test/api.web_stream.coffee --loader=./test/loaders/legacy/all.js 'test/**/*.{coffee,ts}'"
8181
},
8282
"type": "module",
8383
"types": "dist/esm/index.d.ts",

packages/csv-parse/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
"preversion": "npm run build && git add dist",
9797
"pretest": "npm run build",
9898
"test": "mocha 'test/**/*.{coffee,ts}'",
99-
"test:legacy": "mocha --loader=./test/loaders/legacy/all.js 'test/**/*.{coffee,ts}' --ignore test/api.web_stream.coffee"
99+
"test:legacy": "mocha --ignore test/api.web_stream.coffee --loader=./test/loaders/legacy/all.js 'test/**/*.{coffee,ts}'"
100100
},
101101
"type": "module",
102102
"types": "dist/esm/index.d.ts",

packages/csv-stringify/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
"preversion": "npm run build && git add dist",
7474
"pretest": "npm run build",
7575
"test": "mocha 'test/**/*.{coffee,ts}'",
76-
"test:legacy": "mocha --loader=./test/loaders/legacy/all.js 'test/**/*.{coffee,ts}' --ignore test/api.web_stream.coffee"
76+
"test:legacy": "mocha --ignore test/api.web_stream.coffee --loader=./test/loaders/legacy/all.js 'test/**/*.{coffee,ts}'"
7777
},
7878
"type": "module",
7979
"types": "dist/esm/index.d.ts",

0 commit comments

Comments
 (0)