Skip to content

Commit

Permalink
Use tsc directly, instead of tsd
Browse files Browse the repository at this point in the history
  • Loading branch information
novemberborn committed Jun 5, 2022
1 parent e347929 commit 4514fdd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
TS_VERSION: ${{ matrix.ts-version }}
- run: npm ls typescript
continue-on-error: true
- run: npx tsd
- run: npx tsc --noEmit

lockfile_churn:
name: Test package-lock for unexpected modifications
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
},
"scripts": {
"cover": "c8 --report=none test-ava && c8 --report=none --no-clean tap && c8 report",
"test": "xo && tsd && npm run -s cover"
"test": "xo && tsc --noEmit && npm run -s cover"
},
"files": [
"entrypoints",
Expand Down

0 comments on commit 4514fdd

Please sign in to comment.