Skip to content

Develop

Develop #73

Workflow file for this run

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