diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d6dddee4ce..e3c9acee90 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,10 +23,10 @@ jobs: - run: yarn install --frozen-lockfile --prefer-offline - name: typecheck run: yarn typecheck - - name: lint - run: yarn lint - name: compile run: yarn compile + - name: lint + run: yarn lint - name: package vscode run: yarn package - name: compile system scripts diff --git a/packages/cli/package.json b/packages/cli/package.json index 0dc347f727..12086a098e 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -82,7 +82,7 @@ "go": "yarn compile && node built/genaiscript.cjs", "test": "node --import tsx --test src/**.test.ts", "typecheck": "tsc -p src", - "lint": "npx --yes publint --strict", + "lint": "npx --yes publint", "publish": "yarn lint && npm publish" } }