From d8d5263d33ba5f4016dcc33d3ec7c79edac38a6a Mon Sep 17 00:00:00 2001 From: Milos Djermanovic Date: Fri, 26 Apr 2024 19:17:48 +0200 Subject: [PATCH] ci: run tests in Node.js 22 --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 576c2e26..559ff430 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,9 +11,9 @@ jobs: name: Lint runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Setup Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 'lts/*' - name: Install dependencies @@ -25,7 +25,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - node: [21.x, 20.x, 18.x, "18.18.0"] + node: [22.x, 21.x, 20.x, 18.x, "18.18.0"] include: - os: windows-latest node: "lts/*"