Skip to content
This repository has been archived by the owner on Sep 21, 2022. It is now read-only.

Commit

Permalink
only coverealls
Browse files Browse the repository at this point in the history
  • Loading branch information
brendaloya committed Mar 31, 2021
1 parent 87a755a commit 867c106
Showing 1 changed file with 31 additions and 31 deletions.
62 changes: 31 additions & 31 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,37 +8,37 @@ on:
pull_request:

jobs:
Tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run tests
uses: actions/setup-node@v1
with:
node-version: '14.x'
- run: npm install
- run: npx hardhat test
env:
CI: true
# These are not needed for the tests but
# hardhat fails to start when not present.
NODE_URL_RINKEBY: ${{ secrets.RINKEBY_NODE }}
NODE_URL_MAINNET: ${{ secrets.MAINNET_NODE }}
PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }}
#NODE_URL_RINKEBY: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
#NODE_URL_MAINNET: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
#PRIVATE_KEY: "00000000000000000000000000000000000000000000000000"
Linting:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Run Solhint
uses: actions/setup-node@v1
with:
node-version: '14.x'
- run: npm install -g solhint
- run: make solhint
# Tests:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - name: Run tests
# uses: actions/setup-node@v1
# with:
# node-version: '14.x'
# - run: npm install
# - run: npx hardhat test
# env:
# CI: true
# # These are not needed for the tests but
# # hardhat fails to start when not present.
# NODE_URL_RINKEBY: ${{ secrets.RINKEBY_NODE }}
# NODE_URL_MAINNET: ${{ secrets.MAINNET_NODE }}
# PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }}
# #NODE_URL_RINKEBY: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
# #NODE_URL_MAINNET: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
# #PRIVATE_KEY: "00000000000000000000000000000000000000000000000000"
# Linting:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout
# uses: actions/checkout@v2
# - name: Run Solhint
# uses: actions/setup-node@v1
# with:
# node-version: '14.x'
# - run: npm install -g solhint
# - run: make solhint

coverage:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 867c106

Please sign in to comment.