Skip to content

Merge pull request #6 from Delemangi/update-read-me-location-based-fe… #37

Merge pull request #6 from Delemangi/update-read-me-location-based-fe…

Merge pull request #6 from Delemangi/update-read-me-location-based-fe… #37

Workflow file for this run

name: CI/CD Workflow
on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
jobs:
eslint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install dependencies
run: npm i
- name: Run ESLint
id: eslint
run: npm run lint