Skip to content

Bump hardhat to 2.22.18 #979

Bump hardhat to 2.22.18

Bump hardhat to 2.22.18 #979

Workflow file for this run

name: Run analyzer tests on push
on:
pull_request:
jobs:
tests:
runs-on: ubuntu-20.04
timeout-minutes: 15
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@master
with:
node-version: ${{ env.NODE_VERSION }}
registry-url: 'https://npm.pkg.github.com'
scope: "@rumblefishdev"
- name: 'Cache NPM dependencies'
uses: pat-s/[email protected]
with:
path: |
**/node_modules
key: ${{ runner.OS }}-npm-cache-${{ hashFiles('packages/*/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-npm-cache-
- name: Install dependencies
run: |
npm i
node_modules/.bin/lerna bootstrap
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Build types
run: |
npm run types:build
- name: Build Analyzer
run: |
npm run analyzer:build
- name: Run lint
run: |
npm run lint:check
- name: Run tests
run: |
npm run test