forked from tari-project/tari
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'development' into dht-docs
* development: chore: obscure grpc error response (tari-project#3995) test: cucumber saf test (tari-project#3135) fix(wallet): do not prompt for password if given in config (tari-project#4040) fix: makes header consensus encoding infallible (tari-project#4045) refactor(base-node): use existing peer feature methods to check if is a base or client node (tari-project#4048) chore: remove unused else (tari-project#4051) chore(deps): bump ejs from 3.1.6 to 3.1.7 in /applications/tari_web_extension (tari-project#4056) feat(tari_explorer): add total hashrate chart (tari-project#4054) chore(deps): bump async from 2.6.3 to 2.6.4 in /applications/launchpad/gui-vue (tari-project#4053) ci: move npm audit to development only (tari-project#4055) test: fix coverage action (tari-project#4036) fix: launchpad build docker images (tari-project#4042)
- Loading branch information
Showing
22 changed files
with
613 additions
and
961 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 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,44 @@ | ||
on: | ||
push: | ||
branches: | ||
- development | ||
- main | ||
|
||
name: Development CI | ||
|
||
env: | ||
toolchain: nightly-2021-11-20 | ||
CARGO_HTTP_MULTIPLEXING: false | ||
CARGO_TERM_COLOR: always | ||
PROTOC: protoc | ||
|
||
jobs: | ||
checks: | ||
name: npm checks | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v2 | ||
- name: npm audit launchpad gui | ||
run: | | ||
cd applications/launchpad/gui-vue | ||
npm audit | ||
- name: npm audit collectibles | ||
run: | | ||
cd applications/tari_collectibles/web-app | ||
# We have to ignore this for now because audit error is in react-scripts | ||
npm audit || true | ||
- name: npm audit explorer | ||
run: | | ||
cd applications/tari_explorer | ||
npm audit | ||
- name: npm audit web extensions | ||
run: | | ||
cd applications/tari_web_extension | ||
# We have to ignore this for now because audit error is in react-scripts | ||
npm audit || true | ||
- name: npm audit web extensions example | ||
run: | | ||
cd applications/tari_web_extension_example | ||
npm audit | ||
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
Oops, something went wrong.