From f10865348944dd2aa3d82cf5d81ef7bb7ba51730 Mon Sep 17 00:00:00 2001 From: vighnesh153 Date: Tue, 29 Oct 2024 21:22:58 +0530 Subject: [PATCH] fix: ci issues --- .github/workflows/nodejs-ci.yml | 1 + tools-nodejs/vighnesh153-astro/vitest.config.ts | 10 +++++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/nodejs-ci.yml b/.github/workflows/nodejs-ci.yml index 6eb3987c..1b5deca9 100644 --- a/.github/workflows/nodejs-ci.yml +++ b/.github/workflows/nodejs-ci.yml @@ -35,4 +35,5 @@ jobs: echo "Checking - $(pwd)\n"; npm install; npm t; + npm run build; done diff --git a/tools-nodejs/vighnesh153-astro/vitest.config.ts b/tools-nodejs/vighnesh153-astro/vitest.config.ts index 8878c528..21523796 100644 --- a/tools-nodejs/vighnesh153-astro/vitest.config.ts +++ b/tools-nodejs/vighnesh153-astro/vitest.config.ts @@ -10,6 +10,14 @@ export default getViteConfig({ test: { /* for example, use global to avoid globals imports (describe, test, expect): */ // globals: true, - exclude: ["e2e", ".sst", ".astro", ".turbo", "playwright-report"], + exclude: [ + "e2e", + ".sst", + ".astro", + ".turbo", + "playwright-report", + "node_modules", + "dist", + ], }, });