Skip to content

Fix prisma pagination total count #91

Fix prisma pagination total count

Fix prisma pagination total count #91

Workflow file for this run

# This workflow will run tests using node and then publish a package to NPM when a release is created
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
name: run tests
on:
pull_request:
branches: [master]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@v1
with:
node-version: 16.x
- name: Install packages
run: npm ci
- name: Test EJS syntax
run: npm run ejslint
- name: Run tests
run: npm test