Skip to content

Commit 0b81d2f

Browse files
authored
Merge pull request #58 from jo/neighbourhoodie-fix/two-dot-x
Neighbourhoodie fix/two dot x
2 parents 2ff8c62 + 5cb467f commit 0b81d2f

File tree

5 files changed

+927
-244
lines changed

5 files changed

+927
-244
lines changed

.github/workflows/test.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,28 @@ name: Node.js CI
33
on: [pull_request]
44

55
jobs:
6+
cluster:
7+
runs-on: ubuntu-latest
8+
9+
strategy:
10+
matrix:
11+
node-version: [8.x, 10.x, 12.x, 14.x, 15.x]
12+
couchdb-version: [2, 3]
13+
14+
steps:
15+
- uses: actions/checkout@v2
16+
- name: Use Node.js ${{ matrix.node-version }}
17+
uses: actions/setup-node@v1
18+
with:
19+
node-version: ${{ matrix.node-version }}
20+
- name: Set up CouchDB
21+
uses: iamssen/couchdb-github-action@master
22+
with:
23+
couchdb-version: ${{ matrix.couchdb-version }}
24+
- run: npm ci
25+
- run: COUCH=http://admin:[email protected]:5984 npm test
26+
27+
628
single-node:
729
runs-on: ubuntu-latest
830

0 commit comments

Comments
 (0)