Skip to content

Base Sepolia Comet Deployments #2344

Base Sepolia Comet Deployments

Base Sepolia Comet Deployments #2344

Workflow file for this run

name: Run ESLint
on:
workflow_dispatch:
pull_request:
jobs:
run-lint:
name: Run ESLint
runs-on: ubuntu-latest
env:
ETHERSCAN_KEY: ${{ secrets.ETHERSCAN_KEY }}
SNOWTRACE_KEY: ${{ secrets.SNOWTRACE_KEY }}
INFURA_KEY: ${{ secrets.INFURA_KEY }}
POLYGONSCAN_KEY: ${{ secrets.POLYGONSCAN_KEY }}
ARBISCAN_KEY: ${{ secrets.ARBISCAN_KEY }}
LINEASCAN_KEY: ${{ secrets.LINEASCAN_KEY }}
steps:
- name: Checkout repository
uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
cache: 'yarn'
node-version: '16'
- name: Install packages
run: yarn install --non-interactive --frozen-lockfile && yarn build
- name: Run ESLint
run: yarn lint