diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 12dceb2..0797096 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -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 diff --git a/package.json b/package.json index c656595..dec7dda 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/tsconfig.json b/tsconfig.json index c372905..d80a05d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -18,7 +18,8 @@ "paths": { "^/*": ["./*"], "~/*": ["./src/*"] - } + }, + "baseUrl": "." }, "include": ["src"] }