Update OP Sepolia addresses #255
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Coveralls | |
on: | |
push: | |
branches: [main, develop] | |
pull_request: | |
branches: [main, develop] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout Repo" | |
uses: actions/checkout@master | |
- name: "Install Node" | |
uses: actions/setup-node@v2 | |
with: | |
node-version: "14" | |
cache: "yarn" | |
- name: "Install JS Dependencies" | |
run: "yarn install --frozen-lockfile --dev" | |
- name: "Build" | |
run: "yarn build" | |
- name: "Run solidity coverage" | |
run: "yarn hardhat coverage" | |
- name: Coveralls | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} |