Skip to content

Bump get-func-name from 2.0.0 to 2.0.2 #50

Bump get-func-name from 2.0.0 to 2.0.2

Bump get-func-name from 2.0.0 to 2.0.2 #50

Workflow file for this run

name: Build Status
on:
push:
branches:
- main
tags:
- v*
paths-ignore:
- CONTRIBUTING.md
- LICENSE
- README.md
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node-version: [16.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
cache-dependency-path: yarn.lock
- name: Install dependencies
run: yarn
- name: Build
run: ./node_modules/.bin/hardhat compile
# - name: Lint
# run: npx hardhat lint
- name: Test
run: ./node_modules/.bin/hardhat coverage
- name: Upload coverage
uses: codecov/codecov-action@v3