-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into refact/create-project…
…-args
- Loading branch information
Showing
67 changed files
with
3,130 additions
and
709 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 |
---|---|---|
@@ -1 +1,2 @@ | ||
dist/ | ||
bin/ |
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 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,50 @@ | ||
# Pull Request Guidelines | ||
|
||
Our guidelines for submitting a pull request. | ||
|
||
## Before submitting your PR, please verify the following: | ||
|
||
- [ ] The commit message follows our guidelines: | ||
|
||
> Make sure you prefix your commit message with the type of change you are making. Your commit message should look like this: `type: description of the change`. | ||
> | ||
> - Fixing a bug : `fix: description of the change`. | ||
> - Adding a new feature : `feat: description of the change`. | ||
See the options for the different types of changes you can make in the `package.json` file of your project. | ||
|
||
**Leave the options below unchecked if they are not applicable to your Pull Request.** | ||
|
||
- [ ] Tests for the changes have been added (for bug fixes / features) | ||
- [ ] Docs have been added / updated (for bug fixes / features) | ||
|
||
## PR Type | ||
|
||
What kind of change does this PR introduce? | ||
|
||
<!-- Please check the one that applies to this PR using "x". --> | ||
|
||
- [ ] Bugfix | ||
- [ ] Feature | ||
- [ ] Code style update (formatting, local variables) | ||
- [ ] Refactoring (no functional changes, no api changes) | ||
- [ ] Build related changes | ||
- [ ] CI related changes | ||
- [ ] Documentation content changes | ||
- [ ] Test | ||
- [ ] Other... Please describe: | ||
|
||
## Does this PR introduce a breaking change? | ||
|
||
- [ ] Yes | ||
- [ ] No | ||
|
||
If `yes` Please describe the impact and mitigation strategy for existing applications. | ||
|
||
## What was changed? | ||
|
||
Please describe what you have changed in this PR. | ||
|
||
## Other information | ||
|
||
Any other information that is important to this PR. |
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,51 @@ | ||
name: Build and Test | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: ["main"] | ||
pull_request_target: | ||
types: [opened, synchronize, reopened] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Use Node.js | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: "18.18.0" | ||
|
||
- name: Install Dependencies | ||
run: npm install | ||
|
||
- name: Build | ||
run: npm run build | ||
|
||
- name: Unit Tests | ||
working-directory: ./ | ||
run: npm run test | ||
env: | ||
CI: true | ||
|
||
- name: Run Code Coverage | ||
working-directory: ./ | ||
run: npm run coverage | ||
|
||
- name: Upload coverage reports to Codecov | ||
uses: codecov/[email protected] | ||
with: | ||
working-directory: . | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
|
||
#- name: Set up .npmrc | ||
# run: echo "//npm.pkg.github.com/:_authToken=${{ secrets.NPM_TOKEN }}" >> .npmrc | ||
|
||
- name: Install dependencies | ||
run: npm ci |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,4 +35,6 @@ expressots.config.ts | |
|
||
*.tgz | ||
|
||
*.container.ts | ||
*.container.ts | ||
|
||
coverage/ |
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,23 +1,21 @@ | ||
{ | ||
"cSpell.ignoreWords": [ | ||
"Expresso" | ||
], | ||
"workbench.colorCustomizations": { | ||
// "activityBar.foreground": "#38e715", | ||
// "activityBarBadge.background": "#248d0f", | ||
// "activityBarBadge.foreground": "#fcfcfc", | ||
// "sideBar.border": "#38e715", | ||
// "sideBarTitle.foreground": "#38e715", | ||
// "sideBarSectionHeader.border": "#38e715", | ||
// "editorGroupHeader.border": "#38e715", | ||
// "editorGroupHeader.tabsBorder": "#38e715", | ||
// "tab.border": "#38e715", | ||
// "tab.activeBorderTop": "#38e715", | ||
// "panel.border": "#38e715", | ||
// "statusBar.border": "#38e715", | ||
// "statusBar.foreground": "#38e715" | ||
}, | ||
"editor.rulers": [ | ||
120 | ||
], | ||
} | ||
"cSpell.ignoreWords": ["Expresso"], | ||
"workbench.colorCustomizations": { | ||
// "activityBar.foreground": "#38e715", | ||
// "activityBarBadge.background": "#248d0f", | ||
// "activityBarBadge.foreground": "#fcfcfc", | ||
// "sideBar.border": "#38e715", | ||
// "sideBarTitle.foreground": "#38e715", | ||
// "sideBarSectionHeader.border": "#38e715", | ||
// "editorGroupHeader.border": "#38e715", | ||
// "editorGroupHeader.tabsBorder": "#38e715", | ||
// "tab.border": "#38e715", | ||
// "tab.activeBorderTop": "#38e715", | ||
// "panel.border": "#38e715", | ||
// "statusBar.border": "#38e715", | ||
// "statusBar.foreground": "#38e715" | ||
}, | ||
"editor.rulers": [120], | ||
"cSpell.words": ["nonopinionated", "usecase"], | ||
"typescript.tsdk": "node_modules\\typescript\\lib" | ||
} |
Oops, something went wrong.