From ae89341780b529639e47d20c7ce457a213e27f93 Mon Sep 17 00:00:00 2001 From: mohamed amine ozennou <102986762+ozennou@users.noreply.github.com> Date: Wed, 29 Jan 2025 11:40:58 +0100 Subject: [PATCH] chore: Update tests.yml (#2887) - Add node 22 - Update actions/setup-node from v3 to v4 - Ignore .md files from triggering the workflow --- .github/workflows/tests.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 68ea09c6e4..9decd26898 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -6,25 +6,29 @@ on: - master - v4.0 - v5 + paths-ignore: + - '**/*.md' pull_request: branches: - master - v4.0 - v5 + paths-ignore: + - '**/*.md' jobs: tests: runs-on: ubuntu-latest strategy: fail-fast: false matrix: - node-version: ['18', '20'] + node-version: ['18', '20', '22'] redis-version: ['6.2.6-v17', '7.2.0-v13', '7.4.0-v1'] steps: - uses: actions/checkout@v4 with: fetch-depth: 1 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - name: Update npm