Skip to content

Commit

Permalink
fix: Explicitly include agent source in build (#224)
Browse files Browse the repository at this point in the history
Explicitly include `agent.ts` so it is included in `tsc` output.
  • Loading branch information
johnjcsmith authored May 8, 2024
1 parent 1800f7a commit 785ccf1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,9 @@ jobs:
JWKS_URL: ${{ secrets.JWKS_URL }}
PREDICTOR_API_URL: ${{ secrets.PREDICTOR_API_URL }}

- uses: sliteteam/[email protected]
env:
GIT_CRYPT_KEY: ${{ secrets.GIT_CRYPT_KEY }}

- name: Test builds
run: npx lerna run build
5 changes: 3 additions & 2 deletions control-plane/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
},
"include": [
"src/index.ts",
"src/utilities/migrate.ts"
"src/utilities/migrate.ts",
"src/modules/agents/agent.ts"
]
}
}

0 comments on commit 785ccf1

Please sign in to comment.