Skip to content

build(deps): Bump get-func-name from 2.0.0 to 2.0.2 #726

build(deps): Bump get-func-name from 2.0.0 to 2.0.2

build(deps): Bump get-func-name from 2.0.0 to 2.0.2 #726

Workflow file for this run

name: Format and lint checks
on:
pull_request:
push:
branches:
- master
env:
MAINNET_RPC_URL: "https://rpc.ankr.com/eth"
HARDHAT_CHAIN_ID: 1
jobs:
format:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
submodules: recursive
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 14.x
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v2
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Compile code (Hardhat)
run: yarn compile:force
- name: Run format checks
run: yarn format:check
- name: Run lint
run: yarn lint