Skip to content

Commit 3f0ce5b

Browse files
committed
feat: added redis to github actions
1 parent 120e358 commit 3f0ce5b

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,20 @@ jobs:
1313
- 14
1414
- 16
1515
- 18
16-
name: Node ${{ matrix.node_version }} on ${{ matrix.os }}
16+
redis_version:
17+
- 6
18+
- 7
19+
name: Node ${{ matrix.node_version }} on ${{ matrix.os }} with Redis ${{matrix.redis_version}}
1720
steps:
1821
- uses: actions/checkout@v3
1922
- name: Setup node
2023
uses: actions/setup-node@v3
2124
with:
2225
node-version: ${{ matrix.node_version }}
26+
- name: Start redis
27+
uses: supercharge/[email protected]
28+
with:
29+
redis_version: ${{ matrix.redis_version }}
2330
- name: Install dependencies
2431
run: npm install
2532
- name: Run tests

0 commit comments

Comments
 (0)