-
Notifications
You must be signed in to change notification settings - Fork 48
46 lines (41 loc) · 1.43 KB
/
pipeline.yml
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
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Contracts Quality Test
on:
push:
branches: [develop, audit]
pull_request:
branches: [develop, main, audit]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: cp .env.example .env
- name: Solidity Lint
run: |
npx solhint contracts/**/*.sol
- name: JS Lint
run: |
npx eslint .
- name: Solidity Tests # Needed because coverage doesn't work with all tests
run: npm run test
- name: Solidity Test Coverage
run: npm run coveralls
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Solidity contract sizes
run: npx hardhat compile && npx hardhat size-contracts
- name: Average contract size
run: python3 gas-avg-check.py