From 3e63a1cdaa5988cb20aec553b437dba9c5a89137 Mon Sep 17 00:00:00 2001 From: rotorsoft Date: Sat, 21 Sep 2024 12:59:42 -0400 Subject: [PATCH] fix: ignore incomplete libs --- .github/workflows/ci-cd.yml | 6 +++--- jest.config.js | 6 +++++- pnpm-lock.yaml | 9 --------- pnpm-workspace.yaml | 1 + 4 files changed, 9 insertions(+), 13 deletions(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index a9ca27ae..c9ba0419 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -91,10 +91,10 @@ jobs: - eventually-broker - eventually-service-expg - calculator-artifacts - - eventually-aws - - eventually-gcp - - eventually-azure - eventually-trpc + #- eventually-aws + #- eventually-azure + #- eventually-gcp steps: - uses: actions/checkout@v3 diff --git a/jest.config.js b/jest.config.js index 08b9f937..72ae6f0c 100644 --- a/jest.config.js +++ b/jest.config.js @@ -4,7 +4,11 @@ module.exports = { preset: "ts-jest", testEnvironment: "node", testMatch: ["**/*spec.ts"], - testPathIgnorePatterns: ["libs/eventually-gcp/src/__tests__/"], // ignore partial implementation + testPathIgnorePatterns: [ + "libs/eventually-aws", + "libs/eventually-azure", + "libs/eventually-gcp" + ], coveragePathIgnorePatterns: [ "node_modules", "dist", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 2159ea43..17af1b78 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -112,15 +112,6 @@ importers: specifier: ^3.23.8 version: 3.23.8 - libs/eventually-azure: - dependencies: - '@rotorsoft/eventually': - specifier: workspace:^ - version: link:../eventually - zod: - specifier: ^3.23.8 - version: 3.23.8 - libs/eventually-broker: dependencies: '@rotorsoft/eventually': diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index c3c11a7b..7e670014 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -1,5 +1,6 @@ packages: - "libs/**" - "!libs/eventually-aws" + - "!libs/eventually-azure" - "!libs/eventually-gcp" - "services/**"