Skip to content

Commit

Permalink
Pipeline improvements (#109)
Browse files Browse the repository at this point in the history
* Pipeline improvements

* Change mumbai RPC

* Downgrade node
  • Loading branch information
arddluma authored Sep 16, 2022
1 parent a31c418 commit f1d250c
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
install:
working_directory: ~/etherspot-contracts
docker:
- image: circleci/node:14.17.0
- image: cimg/node:14.17.0
auth:
username: $DOCKERHUB_USER
password: $DOCKERHUB_PASSWORD
Expand All @@ -33,7 +33,7 @@ jobs:
publish:
working_directory: ~/etherspot-contracts
docker:
- image: circleci/node:14.17.0
- image: cimg/node:14.17.0
auth:
username: $DOCKERHUB_USER
password: $DOCKERHUB_PASSWORD
Expand Down Expand Up @@ -88,6 +88,8 @@ workflows:
- master
- publish-github-release:
context: general-vars
requires:
- publish
filters:
branches:
only:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/run-linter-and-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,6 @@ jobs:

- name: Run tests
run: npm run test -- --report-gas

- name: Dry run build
run: npm run build
2 changes: 1 addition & 1 deletion extensions/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ export const NETWORK_CONFIGS: {
},
[NetworkNames.Mumbai]: {
chainId: 80001,
defaultProviderUrl: "https://rpc-mumbai.maticvigil.com",
defaultProviderUrl: "https://matic-mumbai.chainstacklabs.com",
defaultGasPrice: 5,
explorer: "https://mumbai.polygonscan.com",
},
Expand Down
26 changes: 26 additions & 0 deletions pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<!--- Provide a general summary of your changes in the Title above -->

## Description
<!--- Describe your changes in detail -->
-

## Motivation and Context
<!--- Why is this change required? What problem does it solve? -->
<!--- If it fixes an open issue, please link to the issue here. -->
-

## How Has This Been Tested?
<!--- Please describe in detail how you tested your changes. -->
<!--- Include details of your testing environment, and the tests you ran to -->
<!--- see how your change affects other areas of the code, etc. -->
-
-
-

## Screenshots (if appropriate):

## Types of changes
<!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: -->
- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing functionality to change)

0 comments on commit f1d250c

Please sign in to comment.