Skip to content

Commit

Permalink
Fix build failure (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
lasuillard authored Dec 10, 2023
1 parent d9cdbef commit e471bc2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,9 @@ jobs:
flags: unit

- name: Run end-to-end tests
run: pnpm run e2e
run: |
pnpm run build
pnpm run e2e
- name: Upload e2e coverage report
uses: codecov/codecov-action@v3
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lasuillard/raindrop-client",
"version": "0.4.0",
"version": "0.4.1",
"description": "Axios client built with OpenAPI generator for Raindrop.io.",
"keywords": [
"raindrop.io",
Expand Down
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
"paths": {
"^/*": ["./*"],
"~/*": ["./src/*"]
}
},
"baseUrl": "."
},
"include": ["src"]
}

0 comments on commit e471bc2

Please sign in to comment.