forked from MetaMask/metamask-extension
-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #468 from poanetwork/develop
5.2.6
- Loading branch information
Showing
14 changed files
with
63,469 additions
and
18,630 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 |
---|---|---|
|
@@ -14,54 +14,74 @@ jobs: | |
prep-deps-npm: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- uses: actions/checkout@v2 | ||
with: | ||
persist-credentials: false | ||
- name: Reconfigure git to use HTTP authentication | ||
run: > | ||
git config --global url."https://github.com/".insteadOf | ||
ssh://[email protected]/ | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: '10.x' | ||
- name: Install npm 6 + deps via npm | ||
node-version: '14.x' | ||
- name: Install npm 7 + deps via npm | ||
run: | | ||
sudo npm install -g npm@6.14.5 && npm install --no-save | ||
sudo npm install -g npm@7.22.0 && npm install --no-save --legacy-peer-deps | ||
test-lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- uses: actions/checkout@v2 | ||
with: | ||
persist-credentials: false | ||
- name: Reconfigure git to use HTTP authentication | ||
run: > | ||
git config --global url."https://github.com/".insteadOf | ||
ssh://[email protected]/ | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: '10.x' | ||
- name: Install npm 6 + deps via npm | ||
node-version: '14.x' | ||
- name: Install npm 7 + deps via npm | ||
run: | | ||
sudo npm install -g npm@6.14.5 && npm install --no-save | ||
sudo npm install -g npm@7.22.0 && npm install --no-save --legacy-peer-deps | ||
- name: lint | ||
run: npm run lint | ||
|
||
test-unit: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- uses: actions/checkout@v2 | ||
with: | ||
persist-credentials: false | ||
- name: Reconfigure git to use HTTP authentication | ||
run: > | ||
git config --global url."https://github.com/".insteadOf | ||
ssh://[email protected]/ | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: '10.x' | ||
- name: Install npm 6 + deps via npm | ||
node-version: '14.x' | ||
- name: Install npm 7 + deps via npm | ||
run: | | ||
sudo npm install -g npm@6.14.5 && npm install --no-save | ||
sudo npm install -g npm@7.22.0 && npm install --no-save --legacy-peer-deps | ||
- name: test:coverage | ||
run: npm run test:coverage | ||
|
||
# test-integration-flat-chrome: | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - uses: actions/checkout@v1 | ||
# - uses: actions/checkout@v2 | ||
# with: | ||
# persist-credentials: false | ||
# - name: Use Node.js ${{ matrix.node-version }} | ||
# uses: actions/setup-node@v1 | ||
# with: | ||
# node-version: '10.x' | ||
# - name: Install npm 6 + deps via npm | ||
# node-version: '14.x' | ||
# - name: Install npm 7 + deps via npm | ||
# run: | | ||
# sudo npm install -g npm@6.14.5 && npm install --no-save | ||
# sudo npm install -g npm@7.22.0 && npm install --no-save | ||
# - name: Enable Chrome | ||
# run: | | ||
# sudo apt-get update | ||
|
@@ -75,14 +95,16 @@ jobs: | |
# test-e2e-chrome: | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - uses: actions/checkout@v1 | ||
# - uses: actions/checkout@v2 | ||
# with: | ||
# persist-credentials: false | ||
# - name: Use Node.js ${{ matrix.node-version }} | ||
# uses: actions/setup-node@v1 | ||
# with: | ||
# node-version: '10.x' | ||
# - name: Install npm 6 + deps via npm | ||
# node-version: '14.x' | ||
# - name: Install npm 7 + deps via npm | ||
# run: | | ||
# sudo npm install -g npm@6.14.5 && npm install --no-save | ||
# sudo npm install -g npm@7.22.0 && npm install --no-save | ||
# - name: Enable Chrome | ||
# run: | | ||
# sudo apt-get update | ||
|
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -1,7 +1,9 @@ | ||
const LEDGER = 'ledger' | ||
const TREZOR = 'trezor' | ||
const DCENT = 'dcent' | ||
|
||
module.exports = { | ||
LEDGER, | ||
TREZOR, | ||
DCENT, | ||
} |
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.