mirror of
https://github.com/aws-actions/configure-aws-credentials.git
synced 2026-03-12 18:07:10 -04:00
fix: build failure due to tests (#1283)
This commit is contained in:
@@ -3,7 +3,7 @@
|
|||||||
"description": "A GitHub Action to configure AWS credentials",
|
"description": "A GitHub Action to configure AWS credentials",
|
||||||
"version": "4.0.3",
|
"version": "4.0.3",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "tsc --project tsconfig.build.json",
|
"build": "tsc",
|
||||||
"lint": "biome check --error-on-warnings ./src",
|
"lint": "biome check --error-on-warnings ./src",
|
||||||
"package": "npm run build && ncc build --license THIRD-PARTY -o dist && ncc build src/cleanup/index.ts -o dist/cleanup && cpy dist/THIRD-PARTY . && del-cli dist/THIRD-PARTY",
|
"package": "npm run build && ncc build --license THIRD-PARTY -o dist && ncc build src/cleanup/index.ts -o dist/cleanup && cpy dist/THIRD-PARTY . && del-cli dist/THIRD-PARTY",
|
||||||
"test": "npm run lint && vitest run"
|
"test": "npm run lint && vitest run"
|
||||||
|
|||||||
@@ -1,9 +0,0 @@
|
|||||||
{
|
|
||||||
"extends": "./tsconfig.json",
|
|
||||||
"exclude": [
|
|
||||||
"test/**/*.ts"
|
|
||||||
],
|
|
||||||
"compilerOptions": {
|
|
||||||
"rootDir": "src"
|
|
||||||
},
|
|
||||||
}
|
|
||||||
@@ -22,12 +22,14 @@
|
|||||||
"lib": [ "ES2020" ],
|
"lib": [ "ES2020" ],
|
||||||
"target": "ES2020",
|
"target": "ES2020",
|
||||||
"noErrorTruncation": true,
|
"noErrorTruncation": true,
|
||||||
"esModuleInterop": true
|
"esModuleInterop": true,
|
||||||
|
"rootDir": "src",
|
||||||
},
|
},
|
||||||
"include": [
|
"include": [
|
||||||
"src/**/*.ts",
|
"src/**/*.ts"
|
||||||
"test/**/*.test.ts"
|
],
|
||||||
|
"exclude": [
|
||||||
|
"test/**/*.ts"
|
||||||
],
|
],
|
||||||
"exclude": [],
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
11
tsconfig.test.json
Normal file
11
tsconfig.test.json
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"extends": "./tsconfig.json",
|
||||||
|
"include": [
|
||||||
|
"test/**/*.ts",
|
||||||
|
"src/**/*.ts"
|
||||||
|
],
|
||||||
|
"exclude": [],
|
||||||
|
"compilerOptions": {
|
||||||
|
"rootDir": "./"
|
||||||
|
},
|
||||||
|
}
|
||||||
@@ -5,5 +5,6 @@ export default defineConfig({
|
|||||||
passWithNoTests: true,
|
passWithNoTests: true,
|
||||||
include: ['test/**/*.test.ts'],
|
include: ['test/**/*.test.ts'],
|
||||||
coverage: { enabled: true },
|
coverage: { enabled: true },
|
||||||
|
typecheck: { tsconfig: './tsconfig.test.json' },
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user