Skip to content

Commit e3e05ee

Browse files
committed
feat(ci): add Redis service to compatibility test workflow
1 parent dd45018 commit e3e05ee

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,12 @@ env:
1717
jobs:
1818
main:
1919
runs-on: ubuntu-latest
20+
21+
services:
22+
redis:
23+
image: redis:8-alpine
24+
ports: ['6379:6379']
25+
2026
steps:
2127
- uses: actions/checkout@v4
2228
with:

.github/workflows/compatibility-test.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,17 @@ env:
1313
jobs:
1414
compatibility-test:
1515
runs-on: ubuntu-latest
16+
17+
services:
18+
redis:
19+
image: redis:8-alpine
20+
ports: ['6379:6379']
21+
1622
strategy:
1723
fail-fast: false
1824
matrix:
1925
node-version: ['18', '20', '22']
20-
package: ['client', 'health-indicator', 'throttler-storage']
26+
package: ['client', 'health-indicator', 'throttler-storage', 'lock']
2127
nestjs-version: ['9', '10', '11']
2228
include:
2329
- nestjs-version: '9'

0 commit comments

Comments
 (0)