Skip to content

fix link

fix link #2

Workflow file for this run

name: Code checks
on:
push:
branches: [main, bft]
pull_request:
branches: [main, bft]
jobs:
test:
runs-on: [self-hosted]
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '18.17.0'
- name: Cache node modules
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run Hardhat tests
run: yarn test
- name: Check formatting
run: yarn format:check