From 87004ed5e27e880cdd89210f727c5ad88a4e6e90 Mon Sep 17 00:00:00 2001 From: Chris Ashton Date: Mon, 18 Jan 2021 10:44:14 +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 eff95e3dde..89d47526d1 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -5,8 +5,6 @@ library("govuk") node() { govuk.setEnvar("PUBLISHING_E2E_TESTS_COMMAND", "test-frontend") govuk.buildProject( - beforeTest: { sh("yarn install") }, - sassLint: false, publishingE2ETests: true, ) }