Skip to content

unneeded variable

unneeded variable #2

Workflow file for this run

name: Tests
on:
push:
branches:
- '*'
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18 # Use the appropriate Node.js version
cache-dependency-path: contract
- name: Install dependencies
run: npm install
working-directory: contract
- name: Run Hardhat tests
run: npx hardhat test
working-directory: contract