From 40f011e7054283f4487b703c40496ffa126475e8 Mon Sep 17 00:00:00 2001 From: Chris Ashton Date: Mon, 18 Jan 2021 10:45:30 +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 1221382c..920d59af 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -3,8 +3,5 @@ library("govuk") node('mongodb-2.4') { - govuk.buildProject( - beforeTest: { sh("yarn install") }, - sassLint: false, - ) + govuk.buildProject() }