Add Jenkins pipeline

This commit is contained in:
2026-01-13 20:57:16 +00:00
parent e038d5db8a
commit d414199f9b

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'
}
}
}
}