Skip to content

Commit

Permalink
fix: ignore incomplete libs
Browse files Browse the repository at this point in the history
  • Loading branch information
rotorsoft committed Sep 21, 2024
1 parent a541895 commit 3e63a1c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 13 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 5 additions & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
9 changes: 0 additions & 9 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
packages:
- "libs/**"
- "!libs/eventually-aws"
- "!libs/eventually-azure"
- "!libs/eventually-gcp"
- "services/**"

0 comments on commit 3e63a1c

Please sign in to comment.