Skip to content

Commit

Permalink
fix: skip_validation config
Browse files Browse the repository at this point in the history
  • Loading branch information
fgardt authored Aug 5, 2024
1 parent 899e34d commit 8bbacf8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,12 @@ async function verifyConditions(config, context) {
const { logger } = context;
const errors = [];

const { skip_validation } = config;

try {
const info = await readInfoFile(config, context);

if (config.skip_validation !== true) {
if (skip_validation == undefined) {
isInfoValid(config, context, info);
}

Expand Down

0 comments on commit 8bbacf8

Please sign in to comment.