Merge pull request #1450 from johndoe6345789/codex/create-jenkinsfile-for-project

Add Jenkins pipeline for CI checks
This commit is contained in:
2026-01-13 20:57:36 +00:00
committed by GitHub

39
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,39 @@
pipeline {
agent any
options {
timestamps()
}
stages {
stage('Checkout') {
steps {
checkout scm
}
}
stage('Install') {
steps {
sh 'npm ci'
}
}
stage('Lint') {
steps {
sh 'npm run lint'
}
}
stage('Typecheck') {
steps {
sh 'npm run typecheck'
}
}
stage('Test') {
steps {
sh 'npm test'
}
}
}
}