Skip to content

tests: added multiple tests for db methods #191

tests: added multiple tests for db methods

tests: added multiple tests for db methods #191

Workflow file for this run

name: CI
on: [push]
env:
NODE_OPTIONS: --max_old_space_size=4096
jobs:
build:
name: Build, lint, and test on Node ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ['18.x']
os: [ubuntu-latest]
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Install deps and build (with cache)
uses: bahmutov/npm-install@c67aaab58a864ea2873950cde9c1c9379f9f711a
- name: Lint
run: npm run lint
- name: Test
run: npm run test
- name: Build
run: npm run build
- name: Upload coverage
uses: codecov/codecov-action@v3
if: ${{ matrix.node-version }} == 18.x
with:
verbose: true