1
0
Fork 0
mirror of synced 2026-06-05 09:45:13 +00:00

fix: build failure due to tests (#1283)

This commit is contained in:
Tom Keller 2025-02-04 15:05:30 -08:00 committed by GitHub
commit 134d71efe0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 19 additions and 14 deletions

View file

@ -3,7 +3,7 @@
"description": "A GitHub Action to configure AWS credentials",
"version": "4.0.3",
"scripts": {
"build": "tsc --project tsconfig.build.json",
"build": "tsc",
"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",
"test": "npm run lint && vitest run"

View file

@ -1,9 +0,0 @@
{
"extends": "./tsconfig.json",
"exclude": [
"test/**/*.ts"
],
"compilerOptions": {
"rootDir": "src"
},
}

View file

@ -22,12 +22,14 @@
"lib": [ "ES2020" ],
"target": "ES2020",
"noErrorTruncation": true,
"esModuleInterop": true
"esModuleInterop": true,
"rootDir": "src",
},
"include": [
"src/**/*.ts",
"test/**/*.test.ts"
"src/**/*.ts"
],
"exclude": [
"test/**/*.ts"
],
"exclude": [],
}

11
tsconfig.test.json Normal file
View file

@ -0,0 +1,11 @@
{
"extends": "./tsconfig.json",
"include": [
"test/**/*.ts",
"src/**/*.ts"
],
"exclude": [],
"compilerOptions": {
"rootDir": "./"
},
}

View file

@ -5,5 +5,6 @@ export default defineConfig({
passWithNoTests: true,
include: ['test/**/*.test.ts'],
coverage: { enabled: true },
typecheck: { tsconfig: './tsconfig.test.json' },
},
});