Skip to content

Bump eslint from 9.16.0 to 9.18.0 #21

Bump eslint from 9.16.0 to 9.18.0

Bump eslint from 9.16.0 to 9.18.0 #21

Workflow file for this run

on: [pull_request]
name: Linter check
jobs:
lint-solidity:
name: Lint Solidity
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '18.x'
- run: yarn install --frozen-lockfile --non-interactive
- name: Run linter
run: yarn run lint:solidity
lint-js:
name: Lint JS
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '18.x'
- run: yarn install --frozen-lockfile --non-interactive
- name: Run linter
run: yarn run lint:js