Version 5.1 - All the GraphQL #32

Closed
timw4mail wants to merge 1160 commits from develop into master
1 changed files with 6 additions and 1 deletions
Showing only changes of commit 442e59f6cf - Show all commits

7
Jenkinsfile vendored
View File

@ -35,7 +35,12 @@ pipeline {
}
}
stage('Code Cleanliness') {
agent any
agent {
docker {
image 'php:8-cli-alpine'
args '-u root --privileged'
}
}
steps {
sh "php ./vendor/bin/phpstan analyse src/ -c phpstan.neon -n --no-ansi --no-progress --error-format=checkstyle > build/logs/checkstyle.xml"
recordIssues(tools: [checkstyle(reportEncoding: 'UTF-8')])