Skip to content

Commit

Permalink
fix(ci): use public folder exists instead .skip-lint
Browse files Browse the repository at this point in the history
release-as: 0.11.1
  • Loading branch information
actions-user committed Dec 9, 2022
1 parent 87d94e6 commit 45c2f78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/dev/scripts/zcloak-dev-lint-dependencies.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ console.log('$ zcloak-dev-lint-dependencies', process.argv.slice(2).join(' '));
process.chdir(dir);

if (
!fs.existsSync(path.join(process.cwd(), '.skip-lint')) ||
fs.existsSync(path.join(process.cwd(), 'public')) ||
!fs.existsSync(path.join(process.cwd(), '.skip-build'))
) {
const { errors: _errors } = await lintDependencies(`packages/${dir}`, locals);
Expand Down

0 comments on commit 45c2f78

Please sign in to comment.