From 056a3ab420efefbc44f76e3f093c1beb320610ea Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Sat, 23 Dec 2023 21:55:34 +0200 Subject: [PATCH] CI: switch to Node.js 20 --- .github/workflows/ci.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9561701..02a9596 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ on: env: FORCE_COLOR: 2 - NODE_LTS: 18 # used for linting and publish + NODE_LTS: 20 # used for linting and publish jobs: lint: @@ -78,7 +78,6 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, windows-latest, macos-latest] - node: [18] steps: - name: Clone repository @@ -89,7 +88,7 @@ jobs: - name: Set up Node.js uses: actions/setup-node@v4 with: - node-version: ${{ matrix.node }} + node-version: ${{ env.NODE_LTS }} cache: npm - name: Install npm dependencies