Skip to content

Merge branch 'develop' into feature/flagsForPrioFeeAndPreflightCheck #2148

Merge branch 'develop' into feature/flagsForPrioFeeAndPreflightCheck

Merge branch 'develop' into feature/flagsForPrioFeeAndPreflightCheck #2148

name: Ethereum Smart Contract
on:
push:
paths:
- 'ethereum/smart-contract/**'
- '.github/**'
pull_request:
jobs:
ethereum-gateway-smart-contract-test:
name: Build and test the ethereum smart-contract code on ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ['20.x']
os: [ubuntu-latest]
defaults:
run:
working-directory: ./ethereum/smart-contract
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Cache node dependencies
uses: actions/cache@v2
with:
path: |
./node_modules
key: yarn-ethereum-${{ hashFiles('ethereum/yarn.lock') }}
- name: NPM login
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > .npmrc
- name: Install
run: yarn
- name: Build
env:
PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }}
INFURA_KEY: ${{ secrets.INFURA_KEY }}
run: yarn build
- name: Test with coverage
env:
PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }}
INFURA_KEY: ${{ secrets.INFURA_KEY }}
run: yarn coverage