Skip to content

Merge pull request #43 from subspace/42-some-faucet-foundry-tests-are… #112

Merge pull request #43 from subspace/42-some-faucet-foundry-tests-are…

Merge pull request #43 from subspace/42-some-faucet-foundry-tests-are… #112

Workflow file for this run

name: Run Hardhat Test with NPM
on:
push:
workflow_dispatch:
jobs:
test_hardhat_npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: NPM Clean Install
run: cd smart_contract && npm ci
- name: Hardhat Compile
run: cd smart_contract && npx hardhat compile
- name: Hardhat Test
run: cd smart_contract && npx hardhat test
- name: Hardhat Coverage Result
run: cd smart_contract && npx hardhat coverage