generated from finos-labs/project-blueprint
-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update explore-cytoscape with changes from main (#648)
* CLI Version Upgrade Also fixing the CLI by; Introducing `tsup` to bundle our packages together into a useable executable. Migrated `spectral` into `shared` - updated README and steps - now the steps aren't referenced via file and are part of the code itself. Simplfying validation code. * Cleaned up Spectral from CODEOWNERS * Update dependency ts-graphviz to v2.1.5 (#629) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Missing package-lock.json (#631) * Update docusaurus monorepo to v3.6.2 (#605) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Matthew Bain <[email protected]> * Update dependency @types/node to v22.10.1 (#635) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update docusaurus monorepo to v3.6.3 (#633) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * This fixes #316 (#634) Introducing a `-pretty` flag to the validate command. * #486 Unify instantiation mechanisms (#521) * add instantiate module and move relationships/metadata to use it * #486 initial unification * #486 add path context to generate command logging * #486 fix condition when instantiating * 486 clean up functions and split property instantiation * #486 lint * #486 always instantiate 'interfaces' block * 486 test improvements * #486 comments cleanup * #486 test improvements * Workspace Bin Movement Now that I know more about workspaces, the published CLI didn't have a bin element so wasn't being linked as part of the release/install. Also ran lint-fix - so some other line ending fixes. * Instantiate refs and qualify relative paths when generating * Extract update logic to higher-order function * Add schema directory test for qualifying refs * Properly instantiate enums (first cut) * Fix typing issue and enum placeholder logic * Log potential values for an enum when instantiated * Suggested change to appendPath * Lint --------- Co-authored-by: Thels <[email protected]> * #639 - Github Action Chore - Standardizing Existing - Introducing Docs Build for PRs (#643) * chore: fixes #639 * Code review fixes --------- Co-authored-by: Matthew Bain <[email protected]> * Update docs url to new domain (#644) * Update dependency globals to v15.13.0 (#641) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update typescript-eslint monorepo to v8.17.0 (#602) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --------- Co-authored-by: Thels <[email protected]> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Matthew Bain <[email protected]> Co-authored-by: Will Osborne <[email protected]> Co-authored-by: David Johnston <[email protected]>
- Loading branch information
1 parent
c1842ab
commit 514d9a9
Showing
78 changed files
with
10,410 additions
and
6,262 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: Build Docs | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- "main" | ||
paths: | ||
- "docs/**" | ||
push: | ||
branches: | ||
- "main" | ||
paths: | ||
- "docs/**" | ||
|
||
jobs: | ||
docs: | ||
name: Build Docs Module | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout PR Branch | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: v20 | ||
|
||
- name: Install docs | ||
run: npm ci | ||
working-directory: docs | ||
|
||
- name: Build docs | ||
run: npm run build | ||
working-directory: docs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: Build Shared | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- "main" | ||
paths: | ||
- "shared/**" | ||
push: | ||
branches: | ||
- "main" | ||
paths: | ||
- "shared/**" | ||
|
||
jobs: | ||
shared: | ||
name: Build, Test, and Lint Shared Module | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout PR Branch | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: v20 | ||
|
||
- name: Install workspace | ||
run: npm ci | ||
|
||
- name: Lint Shared Module | ||
run: npm run lint --workspace=shared | ||
|
||
- name: Build workspace | ||
run: npm run build | ||
|
||
- name: Run tests for Shared | ||
run: npm run test --workspace=shared |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Build Translators | ||
|
||
on: | ||
push: | ||
branches: ["main"] | ||
paths: ["translator/**"] | ||
pull_request: | ||
branches: ["main"] | ||
paths: ["translator/**"] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-java@v4 | ||
with: | ||
java-version: "21" | ||
distribution: "temurin" | ||
cache: maven | ||
- run: mvn -B install --file ./translator/pom.xml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,3 +22,5 @@ node_modules/ | |
**/.vscode-test/ | ||
**/out/ | ||
**/dependency-check-report/ | ||
|
||
**/tsconfig.tsbuildinfo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,14 @@ | ||
module.exports = { | ||
module.exports = { | ||
preset: 'ts-jest', | ||
testEnvironment: 'node', | ||
testMatch: ['./**/*.spec.ts'], | ||
testMatch: ['**/*.spec.ts'], | ||
transformIgnorePatterns: [ | ||
"<rootDir>/node_modules/(?!calm-shared)", | ||
'<rootDir>/node_modules/(?!@finos/calm-shared)', | ||
'^.+\\.js$' | ||
], | ||
transform: { | ||
'^.+\\.ts?$': 'ts-jest', | ||
}, | ||
rootDir: '.', | ||
watchPathIgnorePatterns: ['<rootDir>/../shared/'] | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.