From ba700124ddbb8bde83cb549d92e5dd4638ddd48e Mon Sep 17 00:00:00 2001 From: Chris Ashton Date: Mon, 18 Jan 2021 10:42:25 +0000 Subject: [PATCH] Remove redundant config The sassLint option was removed in https://github.com/alphagov/govuk-jenkinslib/pull/80 And the Yarn install step is unnecessary as of https://github.com/alphagov/govuk-jenkinslib/pull/82 --- Jenkinsfile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 9c0232b0..915390fc 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -3,8 +3,5 @@ library("govuk") node { - govuk.buildProject( - beforeTest: { sh("yarn install") }, - sassLint: false, - ) + govuk.buildProject() }