Skip to content

Commit

Permalink
Ensure tsc runs on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
hildjj committed Feb 17, 2024
1 parent 51e6d80 commit 8ea694d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ jobs:
run: npm run lint
- name: Static analysis - check types
if: matrix.node-version == '21.x' && matrix.os == 'ubuntu-latest'
run: npm run ts
run: npm run build
- name: Test
run: npm run test
2 changes: 1 addition & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
declare function _exports(code: string, options?: FromMemOptions | undefined): Promise<unknown>;
declare function _exports(code: string, options: FromMemOptions): Promise<unknown>;
export = _exports;
/**
* Options for how to process code.
Expand Down

0 comments on commit 8ea694d

Please sign in to comment.