Bump get-func-name from 2.0.0 to 2.0.2 #50
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: 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 |