add CI pipeline with lint, test, build
Some checks failed
CI / build (push) Failing after 3m53s

This commit is contained in:
21_KnjazkinSO
2026-05-10 16:19:05 +03:00
parent 92843ee86c
commit 08d4cc1f80
8421 changed files with 1363645 additions and 0 deletions

28
package.json Normal file
View File

@@ -0,0 +1,28 @@
{
"name": "ci_cd_kniaz",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint src/**/*.ts",
"test": "jest",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git@iux-gitea.myddns.me:21_KnjazkinSO/ci_cd_kniaz.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/jest": "^30.0.0",
"eslint": "^10.3.0",
"globals": "^17.6.0",
"jest": "^30.4.2",
"ts-jest": "^29.4.9",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.2"
}
}