Skip to content

Commit

Permalink
ci: update environment
Browse files Browse the repository at this point in the history
- 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]>
  • Loading branch information
achrinza committed Apr 29, 2022
1 parent 14439a2 commit b01a31c
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 7 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/continuous-integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,16 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10, 12, 14]
redis-version: [6]
node-version:
- 10
- 12
- 14
- 16
- 17
- 18
redis-version:
- 6
- 7

steps:
- name: Git checkout
Expand Down
17 changes: 12 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
sudo: false
arch:
- arm64
- ppc64le
- s390x
dist: focal
language: node_js
node_js:
- "10"
- "12"
- "13"
- 10
- 12
- 14
- 16
- 18

services:
- redis-server
- redis

0 comments on commit b01a31c

Please sign in to comment.