diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3ca578d7..b1877e54 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,8 +25,8 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - node_version: [14.x, 16.x, 18.x] - os: [ubuntu-latest, windows-latest] + node_version: [14.x] + os: [windows-latest] fail-fast: false steps: - uses: actions/checkout@v3 diff --git a/src/doctor/rules/TSCONFIG_RISK.ts b/src/doctor/rules/TSCONFIG_RISK.ts index 1096defa..f184ead0 100644 --- a/src/doctor/rules/TSCONFIG_RISK.ts +++ b/src/doctor/rules/TSCONFIG_RISK.ts @@ -12,6 +12,7 @@ export default (api: IApi) => { tsconfigPath && winPath(tsconfigPath).includes(api.cwd) && getTsconfig(api.cwd); + console.log(tsconfigPath, api.cwd); if (tsconfig && tsconfig.options.declaration) { const inputs = bundlessConfigs.map((c) => c.input);