From 506996698034adda6778316f03ac6b42b95b4d4b Mon Sep 17 00:00:00 2001 From: "alexander.akait" Date: Tue, 6 Aug 2024 16:21:40 +0300 Subject: [PATCH] ci: update --- .github/workflows/ci.yml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bc800af..5683d7c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: strategy: matrix: - node: [14] + node: [18] os: [ubuntu-latest] steps: @@ -51,19 +51,17 @@ jobs: strategy: fail-fast: false matrix: - node: [14, 16, 18] + node: [18, 20, 22] os: [ubuntu-latest, windows-latest, macos-latest] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node }} - - - name: Install latest npm - run: npm install --global npm@latest + cache: "npm" - name: Install dependencies run: npm ci