Skip to content

Added prettier and eslint #1

Added prettier and eslint

Added prettier and eslint #1

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@v2
with:
name: eslint-report
path: eslint-report.json