Skip to content

Commit 80beb37

Browse files
Merge pull request #25 from hokunet/jd/ci-update
feat: add extra CI checks
2 parents c69b043 + cc35b52 commit 80beb37

10 files changed

+2324
-4
lines changed

.github/workflows/coverage-check.yaml

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
name: Solidity Lint, and Coverage
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
11+
jobs:
12+
lint:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Checkout Repository
16+
uses: actions/checkout@v2
17+
18+
- name: Install pnpm
19+
run: npm install -g pnpm
20+
21+
- name: Set up Node.js
22+
uses: actions/setup-node@v2
23+
with:
24+
node-version: '18'
25+
26+
- name: Install Dependencies
27+
run: pnpm install
28+
29+
- name: Run Solidity Linter
30+
run: pnpm exec solhint 'src/**/*.sol'
31+
32+
coverage:
33+
runs-on: ubuntu-latest
34+
steps:
35+
- name: Checkout Repository
36+
uses: actions/checkout@v2
37+
38+
- name: Install Foundry
39+
uses: foundry-rs/foundry-toolchain@v1
40+
with:
41+
version: nightly
42+
43+
- name: Install forge-coverage
44+
run: forge install
45+
46+
- name: Run Coverage
47+
run: forge coverage --report lcov
48+
# Check fails if coverage percentage falls under 80%
49+
- name: Check Coverage Threshold
50+
run: |
51+
COVERAGE=$(forge coverage --report summary | grep 'Total coverage:' | awk '{print $3}' | cut -d'%' -f1)
52+
echo "Coverage is $COVERAGE%"
53+
if [ "$COVERAGE" -lt 80 ]; then
54+
echo "Code coverage ($COVERAGE%) is below the threshold (80%)"
55+
exit 1
56+
fi

.github/workflows/lint-pr.yaml

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: "Lint PR title and commits"
2+
3+
on:
4+
pull_request:
5+
types:
6+
- opened
7+
- edited
8+
- synchronize
9+
- reopened
10+
11+
permissions:
12+
pull-requests: read
13+
14+
jobs:
15+
main:
16+
name: Validate PR follows Conventional Commits
17+
runs-on: ubuntu-latest
18+
steps:
19+
- uses: amannn/action-semantic-pull-request@v5
20+
env:
21+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
22+
with:
23+
## A non-comprehensive list of scopes. Scope is not required, but strongly encouraged, as it brings
24+
## structure to changelogs.
25+
scopes: |
26+
contracts
27+
test
28+
requireScope: false
29+
subjectPattern: ^(?![A-Z]).+$
30+
subjectPatternError: |
31+
The subject "{subject}" found in the pull request title "{title}"
32+
didn't match the configured pattern. Please ensure that the subject
33+
doesn't start with an uppercase character.

.github/workflows/upgrade-safe.yaml

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
name: 'Contracts: Storage check'
2+
3+
on:
4+
push:
5+
pull_request:
6+
workflow_dispatch:
7+
8+
env:
9+
RPC_URL: https://filecoin-calibration.chainup.net/rpc/v1
10+
PRIVATE_KEY: 0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef
11+
12+
jobs:
13+
storage:
14+
name: Storage layout check
15+
runs-on: ubuntu-latest
16+
if: ${{ !github.event.pull_request.draft }}
17+
steps:
18+
- uses: webfactory/[email protected]
19+
with:
20+
ssh-private-key: |
21+
${{ secrets.BUILTIN_ACTORS_DEPLOY_KEY }}
22+
${{ secrets.CONTRACTS_DEPLOY_KEY }}
23+
24+
- uses: actions/checkout@v3
25+
with:
26+
submodules: recursive
27+
28+
- name: Install pnpm
29+
run: npm install -g pnpm
30+
31+
- name: Setup Node
32+
uses: actions/setup-node@v4
33+
with:
34+
node-version: '18.x'
35+
cache: 'pnpm'
36+
37+
- name: Install Foundry
38+
uses: foundry-rs/foundry-toolchain@v1
39+
with:
40+
cache: false
41+
42+
- name: Install Node dependencies
43+
run: pnpm install
44+
45+
- name: Storage check
46+
run: pnpm exec hardhat storage-layout --check

.gitignore

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Compiler files
22
cache/
33
out/
4+
cache_hardhat/
5+
artifacts/
46

57
# Ignores development broadcast logs
68
!/broadcast
@@ -16,4 +18,5 @@ docs/
1618

1719
settings.json
1820

19-
.DS_Store
21+
.DS_Store
22+
node_modules/

.solhint.json

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"extends": "solhint:recommended",
3+
"rules": {
4+
"compiler-version": ["error", "^0.8.0"],
5+
"func-visibility": [
6+
"warn",
7+
{
8+
"ignoreConstructors": true
9+
}
10+
],
11+
"no-inline-assembly": ["off"],
12+
"no-global-import": "error",
13+
"no-unused-import": "off",
14+
"no-unused-vars": "error",
15+
"const-name-snakecase": "error",
16+
"contract-name-camelcase": "error",
17+
"event-name-camelcase": "error",
18+
"func-name-mixedcase": "error",
19+
"func-param-name-mixedcase": "error",
20+
"modifier-name-mixedcase": "error",
21+
"private-vars-leading-underscore": "off",
22+
"var-name-mixedcase": "error",
23+
"imports-on-top": "error",
24+
"no-empty-blocks": "error",
25+
"quotes": "error",
26+
"use-forbidden-name": "error",
27+
"visibility-modifier-order": "error",
28+
"avoid-tx-origin": "error",
29+
"reentrancy": "error",
30+
"explicit-types": ["error", "explicit"]
31+
}
32+
}

hardhat.config.js

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
/** @type import('hardhat/config').HardhatUserConfig */
2+
require("hardhat-storage-layout-changes");
3+
require("@nomicfoundation/hardhat-foundry");
4+
5+
const path = require("path");
6+
7+
module.exports = {
8+
solidity: {
9+
compilers: [
10+
{
11+
version: "0.8.23",
12+
},
13+
{
14+
version: "0.8.26",
15+
}
16+
],
17+
},
18+
paths: {
19+
sources: "./src",
20+
storageLayouts: ".storage-layouts",
21+
},
22+
storageLayoutConfig: {
23+
contracts: ['src/Hoku.sol:Hoku'],
24+
fullPath: true
25+
},
26+
resolve: {
27+
alias: {
28+
"@openzeppelin/contracts": path.resolve(__dirname, "lib/openzeppelin-contracts/contracts"),
29+
},
30+
},
31+
};

package.json

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"name": "contracts",
3+
"version": "1.0.0",
4+
"description": "",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "forge test"
8+
},
9+
"keywords": [],
10+
"author": "",
11+
"license": "ISC",
12+
"devDependencies": {
13+
"@nomicfoundation/hardhat-foundry": "^1.1.2",
14+
"hardhat": "^2.22.13",
15+
"solhint": "^5.0.3"
16+
},
17+
"dependencies": {
18+
"hardhat-storage-layout-changes": "^0.1.2"
19+
}
20+
}

0 commit comments

Comments
 (0)