From 809ea6176e4dc6d15bf94c37667d243199ee5aea Mon Sep 17 00:00:00 2001 From: Florian Trayon <26360935+FlorianLeChat@users.noreply.github.com> Date: Fri, 3 May 2024 19:58:39 +0200 Subject: [PATCH] Added support for NodeJS 22 on GitHub Actions compliant workflows --- .github/workflows/eslint.yml | 2 +- .github/workflows/playwright.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/eslint.yml b/.github/workflows/eslint.yml index 00ea431..ea326d6 100644 --- a/.github/workflows/eslint.yml +++ b/.github/workflows/eslint.yml @@ -14,7 +14,7 @@ jobs: security-events: write strategy: matrix: - node: [ 18, 20 ] + node: [ 18, 20, 22 ] fail-fast: false steps: - name: Checkout code diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 7a0fee1..22b6f98 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node: [ 18, 20 ] + node: [ 18, 20, 22 ] fail-fast: false steps: - name: Checkout code