Skip to content

upgrade to lates eslint #5

upgrade to lates eslint

upgrade to lates eslint #5

Workflow file for this run

name: ci-eslint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: "20.10.0"
# Speed up subsequent runs with caching
- name: Cache node modules
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
# install eslint
- name: Install eslint
run: npm i eslint
run: npm i globals

Check failure on line 32 in .github/workflows/ci-eslint.yml

View workflow run for this annotation

GitHub Actions / ci-eslint

Invalid workflow file

The workflow is not valid. .github/workflows/ci-eslint.yml (Line: 32, Col: 9): 'run' is already defined
# lint the files
- name: Do the linting
run: node_modules/eslint/bin/eslint.js static/api/js/*.js