diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fdb366d..d236aed 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,9 +41,6 @@ jobs: - run: npm ci if: matrix.runtime == 'node' || matrix.runtime == 'bun' - run: deno task test:${{ matrix.runtime }} - # https://github.com/denoland/deno/issues/27166 - - run: npx tsx --test - if: matrix.runtime == 'node' publish: name: Publish diff --git a/deno.jsonc b/deno.jsonc index 51e67fa..bb2e14c 100644 --- a/deno.jsonc +++ b/deno.jsonc @@ -44,9 +44,7 @@ }, "test:node": { "description": "Test code (node)", - "command": "cd $INIT_CWD && echo 'Not supported yet'" - // https://github.com/denoland/deno/issues/27166 - // npx tsx --test" + "command": "cd $INIT_CWD && npm test" }, "test:bun": { "description": "Test code (bun)", diff --git a/package.json b/package.json index 21b3734..9757f4e 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,8 @@ { "type": "module", + "scripts": { + "test": "npx tsx --test" + }, "dependencies": { "@libs/markdown": "npm:@jsr/libs__markdown@^2.0.0", "@libs/reactive": "npm:@jsr/libs__reactive@^5.0.0",