Skip to content

fix and clear docs for dto validation (#671) #520

fix and clear docs for dto validation (#671)

fix and clear docs for dto validation (#671) #520

Workflow file for this run

name: test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v3
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: 18
cache: npm
- name: install
run: npm install
- name: check format
run: npm run format:check
- name: lint
run: npm run lint
- name: test
run: npm run test:cov
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}