Skip to content

Merge main into upstream main #4

Merge main into upstream main

Merge main into upstream main #4

Workflow file for this run

name: hardhat tests
on:
pull_request:
paths:
- "test/*.ts"
- "contracts/**/*.sol"
- "deploy/**/*.ts"
- package*.json
- ".github/env.properties"
- ".github/workflows/hardhat.yml"
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
submodules: true
- run: cat "${GITHUB_WORKSPACE}/.github/env.properties" >> $GITHUB_ENV
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version-file: ".nvmrc"
- name: Run npm install
run: npm i
- name: Run npm run lint
run: npm run lint
- name: Running tests
run: npm t