We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffa7d25 commit ae89341Copy full SHA for ae89341
.github/workflows/tests.yml
@@ -6,25 +6,29 @@ on:
6
- master
7
- v4.0
8
- v5
9
+ paths-ignore:
10
+ - '**/*.md'
11
pull_request:
12
branches:
13
14
15
16
17
18
jobs:
19
tests:
20
runs-on: ubuntu-latest
21
strategy:
22
fail-fast: false
23
matrix:
- node-version: ['18', '20']
24
+ node-version: ['18', '20', '22']
25
redis-version: ['6.2.6-v17', '7.2.0-v13', '7.4.0-v1']
26
steps:
27
- uses: actions/checkout@v4
28
with:
29
fetch-depth: 1
30
- name: Use Node.js ${{ matrix.node-version }}
- uses: actions/setup-node@v3
31
+ uses: actions/setup-node@v4
32
33
node-version: ${{ matrix.node-version }}
34
- name: Update npm
0 commit comments