10 lines
163 B
Groovy
10 lines
163 B
Groovy
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'
|
|
}
|