Skip to content

Commit

Permalink
refactor: changed github actions if
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgimenez02 committed Jul 6, 2023
1 parent 1b3ac99 commit c11accf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/qa/lint-package.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as child_process from 'child_process'

if (process.env.GITHUB_ACTIONS === 'true') {
if (process.env.GITHUB_ACTIONS !== undefined) {
console.log('Will skip lint as it will run in separate workflow')
process.exit()
} else {
Expand Down

0 comments on commit c11accf

Please sign in to comment.