From 9d048f45641674cefdd0cbd40332fd83871d8770 Mon Sep 17 00:00:00 2001 From: andy-haynes <36863574+andy-haynes@users.noreply.github.com> Date: Tue, 28 Jun 2022 12:35:14 -0700 Subject: [PATCH] fix: lint after install Co-authored-by: Morgan McCauley --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index d8fb65bb14..e57a00041c 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -46,8 +46,8 @@ pipeline { } steps { dir("$WORKSPACE/packages/frontend") { - sh 'yarn lint' sh 'yarn install --frozen-lockfile' + sh 'yarn lint' } } }