Skip to content

fix: conversion for anyOf type: null to nullable: true (#44) #38

fix: conversion for anyOf type: null to nullable: true (#44)

fix: conversion for anyOf type: null to nullable: true (#44) #38

Workflow file for this run

name: Tests
on: push
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 14
- 16
- 18
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: yarn install, build, and test
run: |
yarn --frozen-lockfile
yarn build --if-present
yarn lint
yarn test
env:
CI: true