Skip to content

Merge pull request #41 from vrunda2005/contributors_logo #21

Merge pull request #41 from vrunda2005/contributors_logo

Merge pull request #41 from vrunda2005/contributors_logo #21

Workflow file for this run

name: Lint Check
on:
pull_request:
branches:
- main
push:
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@v3
with:
node-version: "20"
- name: Install Dependencies
run: npm install
- name: Run ESLint
run: npm run lint