Skip to content

Commit b01a31c

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 b01a31c

File tree

2 files changed

+22
-7
lines changed

2 files changed

+22
-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

+12-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
1-
sudo: false
1+
arch:
2+
- arm64
3+
- ppc64le
4+
- s390x
5+
dist: focal
26
language: node_js
37
node_js:
4-
- "10"
5-
- "12"
6-
- "13"
8+
- 10
9+
- 12
10+
- 14
11+
- 16
12+
- 18
13+
714
services:
8-
- redis-server
15+
- redis

0 commit comments

Comments
 (0)