Skip to content

Commit

Permalink
Fix type problem
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielRamosAcosta committed Jun 21, 2021
1 parent 10a42ae commit 7f163f8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ jobs:
- name: Install dependencies
run: npm install

- name: Check types
run: npm run typecheck

- name: Run the tests
run: npm run test:coverage

Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"build": "tsc -p ./tsconfig.build.json",
"lint": "eslint --ext .ts ./src",
"lint:fix": "eslint --ext .ts --fix ./src",
"typecheck": "tsc --noEmit",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch"
Expand Down
1 change: 1 addition & 0 deletions src/tepper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ export default function tepper(baseUrlExpressOrServer: BaseUrlServerOrExpress) {
method: "GET",
path: "/",
body: null,
query: null,
redirects: 0,
timeout: null,
jwt: null,
Expand Down

0 comments on commit 7f163f8

Please sign in to comment.