-
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.
Merge branch 'main' into 1318-track-prs-in-the-overview-board
- Loading branch information
Showing
861 changed files
with
36,323 additions
and
19,526 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -7,6 +7,10 @@ on: | |
jobs: | ||
build-and-deploy: | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
shell: bash | ||
working-directory: packages/open-scd | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
|
@@ -18,13 +22,13 @@ jobs: | |
|
||
- name: Install and Build | ||
run: | | ||
npm ci | ||
npm clean-install | ||
npm run-script build | ||
- name: Deploy | ||
uses: JamesIves/[email protected] | ||
with: | ||
branch: master | ||
folder: build | ||
folder: packages/open-scd/build | ||
repository-name: openscd/openscd.github.io | ||
ssh-key: ${{ secrets.DEPLOY_KEY }} | ||
ssh-key: ${{ secrets.DEPLOY_KEY }} |
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
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,33 @@ | ||
# 2. Use Monorepo | ||
|
||
Date: 2023-08 | ||
|
||
## Status | ||
|
||
Accepted | ||
|
||
## Context | ||
|
||
We want: | ||
- better access management to core functionalities, plugins and ui components | ||
- easier maintainability and refactorability of critical parts | ||
- more shareable code | ||
|
||
|
||
## Decision | ||
|
||
We will use a monorepo to manage the codebase for the time being. | ||
|
||
To control access to the codebase we will use CODEOWNERS files. | ||
|
||
|
||
## Consequences | ||
|
||
- it makes the the dependency discovery and management easier between packages | ||
- we can add packages that can be deployed and published independently and still used directly inside the monorepo | ||
- it will allow us to experiment and beta test packages before publishing them | ||
- CI pipeline runs will be faster because changes are more separated | ||
- it will make it harder to bundle and distribute parts of the base distribution | ||
- it moves the complexity of package management into a concentrated place | ||
|
||
|
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,4 @@ | ||
# Decisions | ||
|
||
- [ADR-0001: Record architecture decisions](0001-record-architecture-decisions.md) <kbd>✅ active</kbd> | ||
- [ADR-0002: Use Monorepo](0002-use-monorepo.md) <kbd>✅ active</kbd> |
Oops, something went wrong.