Skip to content

feat: Implementing count, findByIds, find, findOne and remove across all the available models automatically. #6

feat: Implementing count, findByIds, find, findOne and remove across all the available models automatically.

feat: Implementing count, findByIds, find, findOne and remove across all the available models automatically. #6

Workflow file for this run

name: Continuous integration
concurrency:
group: ${{ github.head_ref }}${{ github.ref }}-wallet-sdk
cancel-in-progress: true
on:
pull_request:
branches:
- master
jobs:
build-and-test:
name: Build and test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: 'true'
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "lts/*"
- name: Install
run: npm install
- name: Build
run: npm run build
- name: Run coverage test
run: npm run coverage
- name: Coverage Comment
uses: MishaKav/jest-coverage-comment@v1.0.23
with:
coverage-summary-path: packages/database/coverage/coverage-summary.json