Skip to content

Commit

Permalink
Update tests.yml
Browse files Browse the repository at this point in the history
- Add node 22
- Update actions/setup-node from v3 to v4
- Ignore .md files from triggering the workflow
  • Loading branch information
ozennou authored Jan 17, 2025
1 parent ffa7d25 commit d449088
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d449088

Please sign in to comment.