Skip to content

feat(distinct): add distinct to query builder #10

feat(distinct): add distinct to query builder

feat(distinct): add distinct to query builder #10

Workflow file for this run

name: Check PR
on:
pull_request:
branches: [ prod ]
jobs:
check:
name: Check PR
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" > ~/.npmrc
- name: Install dependencies
run: npm ci
- name: Check eslint
run: npm run lint:check
- name: Typescript check
run: npm run ts:check
- name: Run tests
run: npm run test