Skip to content

Added ESLint and CI Workflow #2

Added ESLint and CI Workflow

Added ESLint and CI Workflow #2

Workflow file for this run

name: Lint Code
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '16'
- name: Install Dependencies
run: npm install
- name: Run Lint
run: npm run lint