Skip to content

Merge pull request #184 from Indu61/feature/file-import-export-option… #164

Merge pull request #184 from Indu61/feature/file-import-export-option…

Merge pull request #184 from Indu61/feature/file-import-export-option… #164

Workflow file for this run

name: Linting Check for commits
on:
push:
branches:
- 'main'
pull_request:
branches:
- 'main'
jobs:
Continuous-Integration:
name: Performs linting on the application
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
cache: 'npm'
- run: npm ci
- name: Run lint check
run: npm run lint