Compare commits

..

2 Commits

Author SHA1 Message Date
d85111c863 Added Jenkinsfile
All checks were successful
thehideout/TheHideout-API/pipeline/head This commit looks good
2026-01-02 23:06:05 +00:00
25772bfe26 Switch to yarn 2026-01-02 23:05:53 +00:00
3 changed files with 3254 additions and 6890 deletions

25
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,25 @@
def deploy() {
node('ubuntu') {
try {
checkout scm
nodejs(nodeJSInstallationName: 'Node23') {
stage('Install') {
sh 'yarn install --frozen-lockfile --production=false'
}
stage('Deploy') {
// Deploy to Cloudflare Workers using wrangler
withCredentials([string(credentialsId: 'th-cloudflare-api-token', variable: 'CLOUDFLARE_API_TOKEN')]) {
sh 'yarn deploy'
}
}
}
} finally {
cleanWs()
}
}
}
deploy()

6890
package-lock.json generated

File diff suppressed because it is too large Load Diff

3229
yarn.lock Normal file

File diff suppressed because it is too large Load Diff