We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 076ab0f commit 3227e89Copy full SHA for 3227e89
2 files changed
.circleci/config.yml
@@ -173,7 +173,7 @@ jobs:
173
echo "This build is not over a PR, nothing to do."
174
fi
175
- run:
176
- command: yarn -s admin validate --ci
+ command: yarn -s admin validate
177
178
e2e-cli:
179
parameters:
scripts/validate.ts
@@ -13,7 +13,7 @@ import validateBuildFiles from './validate-build-files';
13
import validateLicenses from './validate-licenses';
14
import validateUserAnalytics from './validate-user-analytics';
15
16
-export default async function (options: { verbose: boolean; ci: boolean }, logger: logging.Logger) {
+export default async function (options: { verbose: boolean }, logger: logging.Logger) {
17
let error = false;
18
19
if (execSync(`git status --porcelain`).toString()) {
0 commit comments