We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 120e358 commit 3f0ce5bCopy full SHA for 3f0ce5b
.github/workflows/ci.yml
@@ -13,13 +13,20 @@ jobs:
13
- 14
14
- 16
15
- 18
16
- name: Node ${{ matrix.node_version }} on ${{ matrix.os }}
+ redis_version:
17
+ - 6
18
+ - 7
19
+ name: Node ${{ matrix.node_version }} on ${{ matrix.os }} with Redis ${{matrix.redis_version}}
20
steps:
21
- uses: actions/checkout@v3
22
- name: Setup node
23
uses: actions/setup-node@v3
24
with:
25
node-version: ${{ matrix.node_version }}
26
+ - name: Start redis
27
+ uses: supercharge/[email protected]
28
+ with:
29
+ redis_version: ${{ matrix.redis_version }}
30
- name: Install dependencies
31
run: npm install
32
- name: Run tests
0 commit comments