Skip to content

chore: refactor repository architecture and implement SDE2 standards #1

chore: refactor repository architecture and implement SDE2 standards

chore: refactor repository architecture and implement SDE2 standards #1

Workflow file for this run

name: Lint Codebase
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'npm'
- name: Install Dependencies
run: npm install
- name: Run ESLint
run: npm run lint