ci: wrap nix.develop in script block

This commit is contained in:
Siddarth Kumar 2025-07-11 13:44:45 +05:30
parent 87eaaea091
commit a65216cc46
No known key found for this signature in database
GPG Key ID: 599D10112BF518DB

4
Jenkinsfile vendored
View File

@ -21,7 +21,9 @@ pipeline {
stages { stages {
stage('Install') { stage('Install') {
steps { steps {
nix.develop('yarn install') script {
nix.develop('yarn install')
}
} }
} }