From 1f39f70f34c8871bd9a30526e53f5729db0b977c Mon Sep 17 00:00:00 2001 From: Chris Ashton Date: Mon, 18 Jan 2021 10:37:22 +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 | 2 -- 1 file changed, 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 81629c4b..d2ff1821 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -5,9 +5,7 @@ library("govuk") node { govuk.setEnvar("PUBLISHING_E2E_TESTS_COMMAND", "test-manuals-publisher") govuk.buildProject( - beforeTest: { sh("yarn install") }, publishingE2ETests: true, brakeman: true, - sassLint: false, ) }