From 8d0dcd00680297c2d3a98ee2e8fcfc02ec5656b2 Mon Sep 17 00:00:00 2001 From: Reinier Criel Date: Tue, 30 Dec 2025 10:11:25 -0800 Subject: [PATCH] Small fix --- README.md | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 9767b6c..14388cb 100644 --- a/README.md +++ b/README.md @@ -291,6 +291,8 @@ workflows: ## Jenkins Example +Note: This assumes Node.js and npm are installed on the Jenkins agent. + ```groovy pipeline { agent any @@ -302,21 +304,6 @@ pipeline { } stages { - stage('Install Node.js') { - steps { - sh ''' - set -euo pipefail - - # install Node.js + npm (requires root, or passwordless sudo on the agent) - sudo -n apt-get update - sudo -n apt-get install -y nodejs npm - - node -v - npm -v - ''' - } - } - stage('Install safe-chain') { steps { sh '''