Skip to content

Commit e101a15

Browse files
committed
ci: update environment
- test against Node.js v16,v17,v18 - test against Redis v7 - test against alternate architectures see: loopbackio/cicd#2 see: loopbackio/cicd#27 Signed-off-by: Rifa Achrinza <[email protected]>
1 parent 14439a2 commit e101a15

File tree

2 files changed

+25
-7
lines changed

2 files changed

+25
-7
lines changed

.github/workflows/continuous-integration.yaml

+10-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,16 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
node-version: [10, 12, 14]
17-
redis-version: [6]
16+
node-version:
17+
- 10
18+
- 12
19+
- 14
20+
- 16
21+
- 17
22+
- 18
23+
redis-version:
24+
- 6
25+
- 7
1826

1927
steps:
2028
- name: Git checkout

.travis.yml

+15-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,18 @@
1-
sudo: false
1+
branches:
2+
only:
3+
- master
4+
arch:
5+
- arm64
6+
- ppc64le
7+
- s390x
8+
dist: focal
29
language: node_js
310
node_js:
4-
- "10"
5-
- "12"
6-
- "13"
11+
- 10
12+
- 12
13+
- 14
14+
- 16
15+
- 18
16+
717
services:
8-
- redis-server
18+
- redis

0 commit comments

Comments
 (0)