Skip to content

Modified eslint workflow #7

Modified eslint workflow

Modified eslint workflow #7

Workflow file for this run

name: ESLint
on:
push:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install dependencies
run: npm install
- name: Run ESLint
run: npm run lint
- name: Upload ESLint report
uses: actions/upload-artifact@v3
with:
name: eslint-report
path: eslint-report.json