ci: remove unused --ci option from validate script

This commit is contained in:
Keen Yee Liau 2021-04-12 16:16:21 -07:00 committed by Charles
parent 076ab0f11f
commit 3227e89588
2 changed files with 2 additions and 2 deletions

View File

@ -173,7 +173,7 @@ jobs:
echo "This build is not over a PR, nothing to do."
fi
- run:
command: yarn -s admin validate --ci
command: yarn -s admin validate
e2e-cli:
parameters:

View File

@ -13,7 +13,7 @@ import validateBuildFiles from './validate-build-files';
import validateLicenses from './validate-licenses';
import validateUserAnalytics from './validate-user-analytics';
export default async function (options: { verbose: boolean; ci: boolean }, logger: logging.Logger) {
export default async function (options: { verbose: boolean }, logger: logging.Logger) {
let error = false;
if (execSync(`git status --porcelain`).toString()) {