Skip to content

Commit

Permalink
Feat: Add CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Lima committed May 31, 2024
1 parent 1797024 commit a1deb25
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions web3/.github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Smart Contracts CI

on:
- push

jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 18.18.0

- name: Install dependencies
run: npm install

- name: Run Hardhat tests
run: npx hardhat tests

0 comments on commit a1deb25

Please sign in to comment.