Skip to content

Commit

Permalink
Merge pull request #466 from poanetwork/vb-update-npm-deps-2
Browse files Browse the repository at this point in the history
Update NPM dependencies to match Node v14.x
  • Loading branch information
vbaranov committed Sep 21, 2021
2 parents 1be8c47 + b87d2dd commit c19cdc8
Show file tree
Hide file tree
Showing 4 changed files with 63,527 additions and 18,784 deletions.
62 changes: 42 additions & 20 deletions .github/workflows/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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://git@github.com/
- 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://git@github.com/
- 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://git@github.com/
- 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
Expand All @@ -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
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## Current Master

- [#466](https://github.com/poanetwork/nifty-wallet/pull/466) - Update NPM dependencies to match Node v14.x
- [#403](https://github.com/poanetwork/nifty-wallet/pull/403) - Add D'CENT hardware wallet support

## 5.2.5 Fri May 21 2021

- [#459](https://github.com/poanetwork/nifty-wallet/pull/459) - (Fix) Phishing detection
Expand Down
Loading

0 comments on commit c19cdc8

Please sign in to comment.