-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (42 loc) · 1.31 KB
/
workflow.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: Workflow
on:
push:
branches:
- main
pull_request:
jobs:
build:
continue-on-error: False
runs-on: ubuntu-latest
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v3
with:
submodules: recursive
- name: Get a specific Node.js version such that hardhat does not hang periodically
uses: actions/setup-node@v3
with:
node-version: "18.15.0"
# Install modules
- name: Install modules
run: yarn install
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
# Run linters
- name: Run ESLint
run: ./node_modules/.bin/eslint . --ext .js,.jsx,.ts,.tsx
- name: Run solhint
run: ./node_modules/.bin/solhint contracts/p1/*.sol contracts/test/*.sol
# Compile the code and run tests and deploy script(s)
- name: Compile the code
run: ./node_modules/.bin/hardhat compile
- name: Run tests
run: ./node_modules/.bin/hardhat test
# Run hardhat coverage and upload codecov report
- name: Solidity coverage summary
run: ./node_modules/.bin/hardhat coverage
# Compile the code and run foundry tests
- name: Run foundry tests
run: forge test --hh -vvv