From cb67914bde5b5c1e6ca82b0bde17b849f8ca969f Mon Sep 17 00:00:00 2001 From: Benjamin Eckel Date: Tue, 16 Jul 2024 11:23:50 -0500 Subject: [PATCH] wtf gh actions --- .github/workflows/test.yml | 6 ++++++ tsconfig.json | 3 +-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a7ef1d2..81a2879 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -36,6 +36,12 @@ jobs: npm i npm run build + - name: "Debug: List node_modules" + run: ls node_modules/@dylibso/xtp-bindgen || echo "Module not found" + + - name: "Debug: List type definitions" + run: ls node_modules/@dylibso/xtp-bindgen/*.d.ts || echo "Type definitions not found" + - name: Run test script run: | cd tests && ./test.sh diff --git a/tsconfig.json b/tsconfig.json index 864f5af..86c9e76 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -7,8 +7,7 @@ ], // Specify a list of library files to be included in the compilation "types": [ "@extism/js-pdk", - "./src/index.d.ts", - "@dylibso/xtp-bindgen" + "./src/index.d.ts" ], // Specify a list of type definition files to be included in the compilation "strict": true, // Enable all strict type-checking options "esModuleInterop": true, // Enables compatibility with Babel-style module imports