From 61219c520ee2876df962844618695fad375faa27 Mon Sep 17 00:00:00 2001 From: Exile Date: Mon, 10 Jul 2023 15:48:59 +0300 Subject: [PATCH] Set publishing node to v18, add v20 to CI build --- .github/workflows/nodejs.yml | 2 +- .github/workflows/npm-publish.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 89f13eefa..b88a87092 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [14.x, 15.x, 16.x, 17.x, 18.x, 19.x] + node-version: [14.x, 15.x, 16.x, 17.x, 18.x, 19.x, 20.x] steps: - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index a594eef7e..fac0267bd 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -14,7 +14,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: 14 + node-version: 18 - run: npm ci publish-npm: @@ -24,7 +24,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: 14 + node-version: 18 registry-url: https://registry.npmjs.org/ - run: npm ci - run: npm publish