diff --git a/install/unsafe/Jenkinsfile b/install/unsafe/Jenkinsfile new file mode 100644 index 0000000..a85d96c --- /dev/null +++ b/install/unsafe/Jenkinsfile @@ -0,0 +1,4 @@ +stage('install') { + echo 'starting installing' + sh 'npm install --unsafe-perm' +} \ No newline at end of file diff --git a/scripts/install-cypress/Jenkinsfile b/scripts/install-cypress/Jenkinsfile new file mode 100644 index 0000000..ba58c55 --- /dev/null +++ b/scripts/install-cypress/Jenkinsfile @@ -0,0 +1,4 @@ +stage ('cypress') { + echo 'installing' + sh 'npm i -g cypress' +} diff --git a/stats/Jenkinsfile b/stats/Jenkinsfile index 6afb923..890d8d9 100644 --- a/stats/Jenkinsfile +++ b/stats/Jenkinsfile @@ -1,8 +1,9 @@ stage('stats') { + echo 'checking node and npm versions' sh 'node -v' sh 'npm -v' - sh 'ls -a' - sh 'df -h' - sh 'free -m' - sh 'vmstat -s' + // sh 'ls -a' + // sh 'df -h' + // sh 'free -m' + // sh 'vmstat -s' }