Skip to content

feat(validathor): add array schema #43

feat(validathor): add array schema

feat(validathor): add array schema #43

Workflow file for this run

name: CI
on: [push]
jobs:
unit_test-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Nodejs and npm
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Setup Nodejs with yarn caching
uses: actions/setup-node@v4
with:
node-version: '20'
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run tests, lint and type checks
run: |
yarn test
yarn lint
yarn type-check
yarn build:lib