From 5e154ecb4bf2864dd59573d1e5d8731f9d79c19c Mon Sep 17 00:00:00 2001 From: Tsiry Sandratraina Date: Tue, 16 Apr 2024 19:45:15 +0000 Subject: [PATCH] ci: remove codesee workflow fix example fix ci --- .github/workflows/ci.yml | 2 -- .github/workflows/codesee-arch-diagram.yml | 23 ---------------------- deps.ts | 2 +- 3 files changed, 1 insertion(+), 26 deletions(-) delete mode 100644 .github/workflows/codesee-arch-diagram.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cd9a5f3..7f0232c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,8 +20,6 @@ jobs: lint test coverage - - name: Run Dagger Pipelines - run: fluentci run deno_pipeline - name: Upload to Codecov run: fluentci run --wasm codecov upload env: diff --git a/.github/workflows/codesee-arch-diagram.yml b/.github/workflows/codesee-arch-diagram.yml deleted file mode 100644 index 806d41d..0000000 --- a/.github/workflows/codesee-arch-diagram.yml +++ /dev/null @@ -1,23 +0,0 @@ -# This workflow was added by CodeSee. Learn more at https://codesee.io/ -# This is v2.0 of this workflow file -on: - push: - branches: - - main - pull_request_target: - types: [opened, synchronize, reopened] - -name: CodeSee - -permissions: read-all - -jobs: - codesee: - runs-on: ubuntu-latest - continue-on-error: true - name: Analyze the repo with CodeSee - steps: - - uses: Codesee-io/codesee-action@v2 - with: - codesee-token: ${{ secrets.CODESEE_ARCH_DIAG_API_TOKEN }} - codesee-url: https://app.codesee.io diff --git a/deps.ts b/deps.ts index 747351a..174b3bf 100644 --- a/deps.ts +++ b/deps.ts @@ -1,7 +1,7 @@ export { assertEquals } from "jsr:@std/testing@0.218.2/asserts"; export type { DirectoryID, SecretID } from "./sdk/client.gen.ts"; -export { File, Directory, Secret, dag } from "./sdk/client.gen.ts"; +export { File, Directory, Container, Secret, dag } from "./sdk/client.gen.ts"; export { brightGreen } from "jsr:@std/fmt@0.218.2/colors"; export { stringifyTree } from "npm:stringify-tree@1.1.1"; import { gql } from "npm:graphql-request@6.1.0";