You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 2, 2023. It is now read-only.
The reason the build fails after ajv update is that now draft-07 meta-schema is already added to the ajv instance and it is slightly differently defined in ajv than in the spec (the latest change in the spec was to replace empty schemas with true).
I will update the meta-schema in ajv and the issue will go away, but in general the test here needs to be updated to do one of the following:
replace validations against meta-schema, e.g. ajv test -s schema -d "_includes/person.json" --valid with ajv compile -s _includes/person.json (that will validate against meta-schema by default).
do not add meta-schema to the instance: ajv test -s schema -d "_includes/person.json" --valid --meta=false --validate-schema=false.