Skip to content

feat: get many records by index #60

feat: get many records by index

feat: get many records by index #60

Workflow file for this run

name: Node.js CI - tests
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-databaseVersion }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-databaseVersion }}
cache: 'npm'
- name: Running installation
run: npm ci
- name: Running tests
run: npm test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
verbose: true
flags: unittests
directory: ./reports
name: codecov-umbrella
files: clover.xml,cobertura-coverage.xml,lcov.info,junit.xml