Skip to content

Merge branch 'main' of https://github.com/MoralisWeb3/docs #1493

Merge branch 'main' of https://github.com/MoralisWeb3/docs

Merge branch 'main' of https://github.com/MoralisWeb3/docs #1493

Workflow file for this run

name: Run ESLint Check
on:
push:
branches: [ "main" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "main" ]
workflow_dispatch:
jobs:
eslint:
name: Run eslint scanning
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write
actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install ESLint
run: npm install [email protected]
- name: Run ESLint
run: npm run lint