Skip to content

Revert "[HF] Temporary ChaPy->Nimble" #213

Revert "[HF] Temporary ChaPy->Nimble"

Revert "[HF] Temporary ChaPy->Nimble" #213

Workflow file for this run

name: ESLint
on:
push:
branches: [ "*" ]
pull_request:
branches: [ "main" ]
jobs:
eslint:
name: Run eslint scanning
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write
actions: read
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 20
cache: 'npm'
cache-dependency-path: package-lock.json
- name: Install ESLint
run: |
npm install eslint
- name: Run ESLint
run: npm run lint