Skip to content

chore(deps): bump tmp and standard #39

chore(deps): bump tmp and standard

chore(deps): bump tmp and standard #39

Workflow file for this run

name: couch-continuum CI
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: ['14.x', '16.x', '18.x']
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Start CouchDB
uses: iamssen/couchdb-github-action@master
with:
couchdb-version: '3.1'
- run: node --version
- run: npm ci
- run: npm test
env:
COUCH_URL: http://admin:password@127.0.0.1:5984