Skip to content

added github action for running the hardhat tests #1

added github action for running the hardhat tests

added github action for running the hardhat tests #1

Workflow file for this run

name: Hardhat Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: 20 # You can specify your Node.js version here
- name: Install Dependencies
run: npm install
- name: Run Hardhat Tests
run: npx hardhat test