Skip to content

Commit fc4780a

Browse files
committed
add CI/CD workflow
1 parent 3547228 commit fc4780a

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

.github/workflows/test.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: CI
2+
on: [push, pull_request]
3+
jobs:
4+
test:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v4
8+
- uses: actions/setup-node@v4
9+
with:
10+
node-version: '20'
11+
- run: npm ci
12+
- run: npx hardhat compile
13+
- run: npx hardhat test

0 commit comments

Comments
 (0)