From d6ebc80fd430807a12edfbdff8df156c73c05546 Mon Sep 17 00:00:00 2001 From: Luis Marsiglia Date: Sun, 16 Oct 2022 20:19:48 -0400 Subject: [PATCH] chore: fix ci errors --- .github/workflows/ci.yml | 6 ++++++ tsconfig.json | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) 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"] }