mirror of
https://github.com/yashgo0018/maci-wrapper.git
synced 2026-01-14 13:57:53 -05:00
44 lines
867 B
YAML
44 lines
867 B
YAML
name: Lint
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
ci:
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest]
|
|
node: [lts/*]
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@master
|
|
|
|
- name: Setup node env
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: ${{ matrix.node }}
|
|
cache: yarn
|
|
|
|
- name: Install dependencies
|
|
run: yarn install --immutable
|
|
|
|
- name: Run hardhat node, deploy contracts (& generate contracts typescript output)
|
|
run: yarn chain & yarn deploy
|
|
|
|
- name: Run nextjs lint
|
|
run: yarn next:lint --max-warnings=0
|
|
|
|
- name: Check typings on nextjs
|
|
run: yarn next:check-types
|
|
|
|
- name: Run hardhat lint
|
|
run: yarn hardhat:lint --max-warnings=0
|