diff --git a/.github/workflows/legacy-publish.yml b/.github/workflows/legacy-publish.yml index c5854cd..6a33051 100644 --- a/.github/workflows/legacy-publish.yml +++ b/.github/workflows/legacy-publish.yml @@ -9,7 +9,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: '20' + node-version: '22' registry-url: 'https://registry.npmjs.org' - run: npm ci - run: | diff --git a/.github/workflows/legacy-test.yml b/.github/workflows/legacy-test.yml index 7ba20d1..8721005 100644 --- a/.github/workflows/legacy-test.yml +++ b/.github/workflows/legacy-test.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [10.x, 12.x, 14.x, 16.x, 18.x, 20.x] + node-version: [10.x, 12.x, 14.x, 16.x, 18.x, 20.x, 22.x] steps: - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} diff --git a/.github/workflows/pr-json-csv.yml b/.github/workflows/pr-json-csv.yml index 19a169a..304b5e8 100644 --- a/.github/workflows/pr-json-csv.yml +++ b/.github/workflows/pr-json-csv.yml @@ -4,9 +4,6 @@ on: pull_request: branches: [ json-csv ] -# This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node -# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions - jobs: test: if: ${{ !contains(github.event.head_commit.message, '#skip') }} diff --git a/package-lock.json b/package-lock.json index 04cdac7..d13b0ea 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "json-csv", - "version": "4.0.17", + "version": "4.0.18-alpha.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 4bfa6d6..f43882a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "json-csv", - "version": "4.0.17", + "version": "4.0.18-alpha.1", "description": "Easily convert JSON array to CSV in Node.JS via buffered or streaming.", "homepage": "https://github.com/IWSLLC/json-csv", "author": "Nathan Bridgewater (http://iws.io/)",