Skip to content

Commit

Permalink
fix: node testing aliasing #48
Browse files Browse the repository at this point in the history
  • Loading branch information
lowlighter committed Dec 1, 2024
1 parent 42c2b9b commit 12b8754
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 1 addition & 3 deletions deno.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -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)",
Expand Down
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit 12b8754

Please sign in to comment.