Merge branch 'main' into cat/claude-code-3-1-0
This commit is contained in:
commit
61d0287b6e
2
.github/workflows/ci.yaml
vendored
2
.github/workflows/ci.yaml
vendored
@ -48,7 +48,7 @@ jobs:
|
|||||||
- name: Validate formatting
|
- name: Validate formatting
|
||||||
run: bun fmt:ci
|
run: bun fmt:ci
|
||||||
- name: Check for typos
|
- name: Check for typos
|
||||||
uses: crate-ci/typos@v1.36.2
|
uses: crate-ci/typos@v1.36.3
|
||||||
with:
|
with:
|
||||||
config: .github/typos.toml
|
config: .github/typos.toml
|
||||||
validate-readme-files:
|
validate-readme-files:
|
||||||
|
|||||||
@ -350,6 +350,7 @@ module "agentapi" {
|
|||||||
web_app_group = var.group
|
web_app_group = var.group
|
||||||
web_app_icon = var.icon
|
web_app_icon = var.icon
|
||||||
web_app_display_name = var.web_app_display_name
|
web_app_display_name = var.web_app_display_name
|
||||||
|
folder = local.workdir
|
||||||
cli_app = var.cli_app
|
cli_app = var.cli_app
|
||||||
cli_app_slug = var.cli_app ? "${local.app_slug}-cli" : null
|
cli_app_slug = var.cli_app ? "${local.app_slug}-cli" : null
|
||||||
cli_app_display_name = var.cli_app ? var.cli_app_display_name : null
|
cli_app_display_name = var.cli_app ? var.cli_app_display_name : null
|
||||||
|
|||||||
@ -24,12 +24,10 @@ describe("jfrog-oauth", async () => {
|
|||||||
const fakeFrogUrl = "http://localhost:8081";
|
const fakeFrogUrl = "http://localhost:8081";
|
||||||
const user = "default";
|
const user = "default";
|
||||||
|
|
||||||
it("can run apply with required variables", async () => {
|
testRequiredVariables<TestVariables>(import.meta.dir, {
|
||||||
testRequiredVariables<TestVariables>(import.meta.dir, {
|
agent_id: "some-agent-id",
|
||||||
agent_id: "some-agent-id",
|
jfrog_url: fakeFrogUrl,
|
||||||
jfrog_url: fakeFrogUrl,
|
package_managers: "{}",
|
||||||
package_managers: "{}",
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
|
|
||||||
it("generates an npmrc with scoped repos", async () => {
|
it("generates an npmrc with scoped repos", async () => {
|
||||||
|
|||||||
@ -55,13 +55,11 @@ describe("jfrog-token", async () => {
|
|||||||
const user = "default";
|
const user = "default";
|
||||||
const token = "xxx";
|
const token = "xxx";
|
||||||
|
|
||||||
it("can run apply with required variables", async () => {
|
testRequiredVariables<TestVariables>(import.meta.dir, {
|
||||||
testRequiredVariables<TestVariables>(import.meta.dir, {
|
agent_id: "some-agent-id",
|
||||||
agent_id: "some-agent-id",
|
jfrog_url: fakeFrogUrl,
|
||||||
jfrog_url: fakeFrogUrl,
|
artifactory_access_token: "XXXX",
|
||||||
artifactory_access_token: "XXXX",
|
package_managers: "{}",
|
||||||
package_managers: "{}",
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
|
|
||||||
it("generates an npmrc with scoped repos", async () => {
|
it("generates an npmrc with scoped repos", async () => {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user