-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release/develop to testnet 20221117 (#293)
* the helm charts for all 3 envs are synced * commit history reset * Release/experimental to develop 20221116 (#292) * changed action name and added schedule * fixed cron schedule * fixed statusCheckRollup null bug * adding support for `SIGKILL` and `SIGTERM` exit events * fixing RPC url validation bug * updating to remove `SIGKILL` since no listener can be added for it * Feature/holo 523 add health check port (#198) * health check port is implemented for operator * health check on base-command and using hooks * added new health check to indexer * added new health check to propagator and removed old health-check-server file * bug:fix for NetworkMonitor.getProviderStatus() * removed unused code lines * requested changes * Merge branch 'experimental' * fixed incorrectly extends * fixed healthCheck flag bug * renamed HealthCheck class on 'hooks/healthcheck.ts' to HealthCheckServer * Improvement/HOLO 594 enforce prettier and lint (#280) * added actions to prettier and lint * improved prettier and linter actions * added main branches * failure test * removed changes for failure test * added rule for push * bugfix: fixed operatorStatus and getTxStatus (#258) * updated packages to include easy upgrades (#279) * improvement/HOLO-600-updated command descriptions (#283) * updated command descriptions in code and readme * changed copy for contribution * prettier fix * Improvement/holo 594 enforce prettier and lint run on cli (#285) * added actions to prettier and lint * improved prettier and linter actions * added main branches * failure test * removed changes for failure test * added rule for push * husky prepush check for linting and prettier * small change to .husky/pre-push * added husky prepare on package.json * husky prepare * fixes * added unbond command * added fixes for eslint * removed unnecessary log * changed network monitor instantiation * removed unnecessary this.exit() * procecBlock fail handler * bump actions node version to 18.9.0 * testing ssh-agent for GitHub Actions * copy change and removed --network flag from example output' * purging yarn.lock file * re-add exit command so unbond exists after success unbond * silencing additional gas pricing logs * test the cicd * fixing healthCheck issue * fixed package.json * Feature/holo 608 change environment selector env variable to flag (#288) * two solutions for env flags * two solutions for env flags * fixed lint erros * removed 'setEnv' and fixed eslint rules * removed BaseCommand and changed default env to testnet * Clean up some additional lint warnings * Response data must be any type for now * changes for the new --env argument for the operator cli * added custom help to address env flag * eslint changes * changed readme and fixed custom help example * updated the operator helm chart for the new env var: HOLOGRAPH_ENVIRONMENT * fixed healthCheckPort flag default value Co-authored-by: Alexander <[email protected]> Co-authored-by: kostas demiris <[email protected]> Co-authored-by: Natalie Bravo <[email protected]> Co-authored-by: Vitto <[email protected]> Co-authored-by: kostas demiris <[email protected]> Co-authored-by: Alexander <[email protected]> * Release/experimental to develop 20221117 v2 (#296) * updated the operator helm chart for the new env var: HOLOGRAPH_ENVIRONMENT * Release/experimental to develop 20221117 v3 (#299) * update indexer helm chart * indexer:0.0.53 -> HOLOGRAPH_ENVIRONMENT env var added (#297) * Release/experimental to develop 20221118 (#301) * synced testnet with rest of the envs Co-authored-by: kostas demiris <[email protected]> Co-authored-by: kostas demiris <[email protected]> Co-authored-by: Vitto <[email protected]> Co-authored-by: Natalie Bravo <[email protected]> Co-authored-by: Alexander <[email protected]> Co-authored-by: Kostas Demiris <[email protected]>
- Loading branch information
1 parent
1e9bf8c
commit 4a35855
Showing
44 changed files
with
1,398 additions
and
1,119 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
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
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,32 @@ | ||
name: 'Enforce Linter' | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- testnet | ||
- develop | ||
- experimental | ||
pull_request: | ||
branches: | ||
- main | ||
- testnet | ||
- develop | ||
- experimental | ||
|
||
jobs: | ||
run-linter: | ||
name: Run linter | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Check out Git repository | ||
uses: actions/checkout@v3 | ||
- name: Set up Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '18.4.0' | ||
- name: Install dependencies | ||
run: yarn install | ||
- name: Lint Check | ||
run: yarn lint |
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,34 @@ | ||
name: 'Enforce prettier' | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- testnet | ||
- develop | ||
- experimental | ||
pull_request: | ||
branches: | ||
- main | ||
- testnet | ||
- develop | ||
- experimental | ||
|
||
jobs: | ||
prettier: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
ref: ${{ github.head_ref }} | ||
# Make sure the value of GITHUB_TOKEN will not be persisted in repo's config | ||
persist-credentials: false | ||
|
||
- name: Prettify code | ||
uses: creyD/[email protected] | ||
with: | ||
prettier_options: --check src/**/*.+(js|ts) | ||
dry: True |
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 |
---|---|---|
|
@@ -2,3 +2,4 @@ | |
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
yarn lint | ||
yarn prettier:check |
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.