We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a52c4c6 commit c8709bdCopy full SHA for c8709bd
.github/workflows/ci.yml
@@ -19,16 +19,26 @@ jobs:
19
build:
20
runs-on: ubuntu-18.04
21
timeout-minutes: 30
22
- env:
+ env:
23
MONGODB_VERSION: 3.6.9
24
+ strategy:
25
+ matrix:
26
+ include:
27
+ - name: Node 14
28
+ NODE_VERSION: 14.19.1
29
+ - name: Node 16
30
+ NODE_VERSION: 16.14.2
31
+ - name: Node 18
32
+ NODE_VERSION: 18.8.0
33
+ fail-fast: false
34
steps:
35
- name: Fix usage of insecure GitHub protocol
36
run: sudo git config --system url."https://github".insteadOf "git://github"
37
- uses: actions/checkout@v2
38
- name: Use Node.js
39
uses: actions/setup-node@v1
40
with:
- node-version: 14
41
+ node-version: ${{ matrix.node-version }}
42
- name: Cache Node.js modules
43
uses: actions/cache@v2
44
0 commit comments