diff --git a/.github/workflows/jsdoc.yml b/.github/workflows/jsdoc.yml index 647e689..5cc5d8f 100644 --- a/.github/workflows/jsdoc.yml +++ b/.github/workflows/jsdoc.yml @@ -13,7 +13,7 @@ jobs: uses: actions/checkout@v3 - uses: actions/setup-node@v1 with: - node-version: 18.x + node-version: 20.x registry-url: https://registry.npmjs.org/ - run: npm install - run: npm run docs diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a36fb77..ca3b705 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v1 with: - node-version: 18.x + node-version: 20.x registry-url: https://registry.npmjs.org/ - run: npm ci - run: npm run build diff --git a/.github/workflows/test-and-build.yml b/.github/workflows/test-and-build.yml index 205e521..766637a 100644 --- a/.github/workflows/test-and-build.yml +++ b/.github/workflows/test-and-build.yml @@ -10,7 +10,7 @@ jobs: strategy: matrix: - node-version: [ 14.x, 16.x, 18.x ] + node-version: [ 16.x, 18.x, 20.x ] steps: - uses: actions/checkout@v3