From 55df3c14afa892b13739b5149446bbdc962600d7 Mon Sep 17 00:00:00 2001 From: Dominic Griesel Date: Wed, 27 Sep 2023 10:52:31 +0200 Subject: [PATCH] fix: CI tests --- .github/workflows/test-and-release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test-and-release.yml b/.github/workflows/test-and-release.yml index 6a5539a7..9cda64da 100644 --- a/.github/workflows/test-and-release.yml +++ b/.github/workflows/test-and-release.yml @@ -23,7 +23,7 @@ jobs: steps: - uses: ioBroker/testing-action-check@v1 with: - node-version: "16.x" # This should be LTS + node-version: "18.x" # This should be LTS type-checking: true lint: true @@ -35,7 +35,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - node-version: [14.x, 16.x, 18.x] + node-version: [16.x, 18.x, 20.x] os: [ubuntu-latest, windows-latest, macos-latest] steps: @@ -62,7 +62,7 @@ jobs: steps: - uses: ioBroker/testing-action-deploy@v1 with: - node-version: "16.x" # This should be LTS + node-version: "18.x" # This should be LTS build: 'true' npm-token: ${{ secrets.NPM_TOKEN }} github-token: ${{ secrets.GITHUB_TOKEN }}