diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3f16f7b..7385152 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,6 +30,9 @@ jobs: - name: Install run: nci + - name: Build + run: nr build + - name: Lint run: nr lint @@ -53,6 +56,9 @@ jobs: - name: Install run: nci + - name: Build + run: nr build + - name: Typecheck run: nr typecheck diff --git a/tsconfig.json b/tsconfig.json index 1702de4..1cfffe0 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -19,6 +19,6 @@ "~/*": ["./*"] } }, - "include": ["build.config.ts", "src", "packages"], + "include": ["src", "packages", "build.config.ts", "vitest.config.ts"], "exclude": ["node_modules"] }