Add esbuild test project and build-and-release workflow
build-and-release / build (push) Successful in 11s

This commit is contained in:
2026-07-20 12:05:26 +08:00
commit c09a21dcd3
5 changed files with 573 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
{
"name": "test-runner",
"version": "0.1.0",
"private": true,
"description": "Test project for Gitea Actions runner build & release",
"scripts": {
"build": "esbuild src/index.js --bundle --platform=node --outfile=dist/app.js"
},
"devDependencies": {
"esbuild": "^0.25.0"
}
}