ci: Simplify GitHub Actions workflows (#5207)

* ci: Simplify GitHub Actions workflows

* Restore codecov flags using script

* use gpgv instead of gpg --verify

* Remove verbose

* remove test script
This commit is contained in:
Fleny
2026-07-24 22:52:22 +05:30
committed by GitHub
parent 867c7c5b1f
commit 86470adc22
14 changed files with 163 additions and 324 deletions
+2 -2
View File
@@ -17,10 +17,10 @@
"build:type": "tsc --declaration --emitDeclarationOnly --declarationDir dist",
"release-build": "yarn build && yarn build:type",
"check": "biome check --write",
"test:unit": "c8 -r lcov mocha 'tests/unit/**/*.spec.ts' && node ../../scripts/coveragePathFixing.js bot",
"test:unit": "c8 -r lcov mocha 'tests/unit/**/*.spec.ts'",
"test:deno-unit": "deno -A npm:mocha 'tests/unit/**/*.spec.ts'",
"test:bun-unit": "bun --bun mocha 'tests/unit/**/*.spec.ts'",
"test:e2e": "c8 -r lcov mocha -t 30000 'tests/e2e/**/*.spec.ts' && node ../../scripts/coveragePathFixing.js bot",
"test:e2e": "c8 -r lcov mocha -t 30000 'tests/e2e/**/*.spec.ts'",
"test:test-type": "tsc --project tests/tsconfig.json",
"test:type": "tsc --noEmit"
},
+1 -1
View File
@@ -17,7 +17,7 @@
"build:type": "tsc --declaration --emitDeclarationOnly --declarationDir dist",
"release-build": "yarn build && yarn build:type",
"check": "biome check --write",
"test:unit": "c8 -r lcov mocha 'tests/**/*.spec.ts' && node ../../scripts/coveragePathFixing.js discordeno",
"test:unit": "c8 -r lcov mocha 'tests/**/*.spec.ts'",
"test:deno-unit": "deno -A npm:mocha 'tests/**/*.spec.ts'",
"test:bun-unit": "bun --bun mocha 'tests/**/*.spec.ts'",
"test:test-type": "tsc --project tests/tsconfig.json",
+2 -2
View File
@@ -17,10 +17,10 @@
"build:type": "tsc --declaration --emitDeclarationOnly --declarationDir dist",
"release-build": "yarn build && yarn build:type",
"check": "biome check --write",
"test:unit": "c8 -r lcov mocha 'tests/unit/**/*.spec.ts' && node ../../scripts/coveragePathFixing.js gateway",
"test:unit": "c8 -r lcov mocha 'tests/unit/**/*.spec.ts'",
"test:deno-unit": "deno -A npm:mocha 'tests/unit/**/*.spec.ts'",
"test:bun-unit": "bun --bun mocha 'tests/unit/**/*.spec.ts'",
"test:integration": "c8 -r lcov mocha -t 15000 'tests/integration/**/*.spec.ts' && node ../../scripts/coveragePathFixing.js gateway",
"test:integration": "c8 -r lcov mocha -t 15000 'tests/integration/**/*.spec.ts'",
"test:test-type": "tsc --project tests/tsconfig.json",
"test:type": "tsc --noEmit"
},
+2 -2
View File
@@ -17,10 +17,10 @@
"build:type": "tsc --declaration --emitDeclarationOnly --declarationDir dist",
"release-build": "yarn build && yarn build:type",
"check": "biome check --write",
"test:unit": "c8 -r lcov mocha 'tests/unit/**/*.spec.ts' && node ../../scripts/coveragePathFixing.js rest",
"test:unit": "c8 -r lcov mocha 'tests/unit/**/*.spec.ts'",
"test:deno-unit": "deno -A npm:mocha 'tests/unit/**/*.spec.ts'",
"test:bun-unit": "bun --bun mocha 'tests/unit/**/*.spec.ts'",
"test:e2e": "c8 -r lcov mocha -t 60000 'tests/e2e/**/*.spec.ts' && node ../../scripts/coveragePathFixing.js rest",
"test:e2e": "c8 -r lcov mocha -t 60000 'tests/e2e/**/*.spec.ts'",
"test:test-type": "tsc --project tests/tsconfig.json",
"test:type": "tsc --noEmit"
},
+1 -1
View File
@@ -17,7 +17,7 @@
"build:type": "tsc --declaration --emitDeclarationOnly --declarationDir dist",
"release-build": "yarn build && yarn build:type",
"check": "biome check --write",
"test:unit": "c8 -r lcov mocha 'tests/**/*.spec.ts' && node ../../scripts/coveragePathFixing.js types",
"test:unit": "c8 -r lcov mocha 'tests/**/*.spec.ts'",
"test:deno-unit": "deno -A npm:mocha 'tests/**/*.spec.ts'",
"test:bun-unit": "bun --bun mocha 'tests/**/*.spec.ts'",
"test:test-type": "tsc --project tests/tsconfig.json",
+1 -1
View File
@@ -17,7 +17,7 @@
"build:type": "tsc --declaration --emitDeclarationOnly --declarationDir dist",
"release-build": "yarn build && yarn build:type",
"check": "biome check --write",
"test:unit": "c8 -r lcov mocha 'tests/**/*.spec.ts' && node ../../scripts/coveragePathFixing.js utils",
"test:unit": "c8 -r lcov mocha 'tests/**/*.spec.ts'",
"test:deno-unit": "deno -A npm:mocha 'tests/**/*.spec.ts'",
"test:bun-unit": "bun --bun mocha 'tests/**/*.spec.ts'",
"test:test-type": "tsc --project tests/tsconfig.json",