-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (34 loc) · 1008 Bytes
/
main.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
name: CI
on:
pull_request:
branches:
- main
- develop
jobs:
codeQuality:
runs-on: ubuntu-latest
env:
ALCHEMY_PRIVATE_KEY: ${{ secrets.ALCHEMY_PRIVATE_KEY }}
SEPOLIA_URL: ${{ secrets.SEPOLIA_URL }}
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Use Node.js 20.x
uses: actions/setup-node@v2
with:
node-version: 20.x
- name: Install dependencies
run: node ci --function installDeps
- name: Run linter
run: node ci --function lint
- name: Run duplications check
run: node ci --function checksDuplications
- name: Run smart contracts unit tests
run: node ci --function smartContractsUnitTest
- name: Run scripts unit tests
run: node ci --function scriptsUnitTest
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: nova-collective/agora