Skip to content

Commit

Permalink
revert
Browse files Browse the repository at this point in the history
  • Loading branch information
avkos committed Jul 18, 2023
1 parent f0f07b9 commit 5b12ea8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
steps:
- uses: actions/setup-node@v1
with:
node-version: 18
node-version: 14
- uses: actions/checkout@v2

- uses: actions/cache@v2
Expand All @@ -35,7 +35,7 @@ jobs:
path: |
node_modules
*/*/node_modules
key: ${{ runner.os }}-node18-${{ hashFiles('**/package-lock.json') }}
key: ${{ runner.os }}-node14-${{ hashFiles('**/package-lock.json') }}

- run: npm ci
if: steps.cache-deps.outputs.cache-hit != 'true'
Expand All @@ -45,7 +45,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: [16, 18]
node: [14, 16, 18]
env:
TEST: "unit"
steps:
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
steps:
- uses: actions/setup-node@v1
with:
node-version: 18
node-version: 14
- uses: actions/checkout@v2
- uses: browser-actions/setup-firefox@latest
if: matrix.testCmd == 'e2e_browsers'
Expand All @@ -97,7 +97,7 @@ jobs:
path: |
node_modules
*/*/node_modules
key: ${{ runner.os }}-node18-${{ hashFiles('**/package-lock.json') }}
key: ${{ runner.os }}-node14-${{ hashFiles('**/package-lock.json') }}

- run: npm ci
if: (env.TEST == 'unit_and_e2e_clients' || env.TEST == 'e2e_browsers') && steps.cache-deps.outputs.cache-hit != 'true'
Expand All @@ -118,14 +118,14 @@ jobs:
steps:
- uses: actions/setup-node@v1
with:
node-version: 18
node-version: 14
- uses: actions/checkout@v2
- run: bash ./scripts/ci.sh
eth2:
runs-on: ubuntu-latest
strategy:
matrix:
node: [16, 18]
node: [14, 16, 18]
env:
TEST: "eth2"
steps:
Expand Down
1 change: 0 additions & 1 deletion test/e2e.method.signing.js
Original file line number Diff line number Diff line change
Expand Up @@ -539,7 +539,6 @@ describe('transaction and message signing [ @E2E ]', function() {
});

it('eth.accounts.sign', async function(){
this.timeout(30000);
if (process.env.GANACHE || global.window ) return

const message = 'hello';
Expand Down

0 comments on commit 5b12ea8

Please sign in to comment.