mirror of
https://github.com/discordeno/discordeno.git
synced 2026-09-17 08:47:22 +00:00
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:
@@ -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"
|
||||
},
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -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"
|
||||
},
|
||||
|
||||
@@ -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"
|
||||
},
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user