#1037 [Edit Profile] Add confirmation modal for image deletion #1185
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: EsLint | |
on: pull_request | |
jobs: | |
linting: | |
name: Linting # job name (unique id) | |
runs-on: ubuntu-latest # on which machine to run | |
steps: # list of steps | |
- name: Install NodeJS | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '18' | |
- name: Code Checkout | |
uses: actions/checkout@v4 | |
- name: Install Dependencies | |
run: | | |
cd FrontEnd | |
npm install | |
- name: Code Linting | |
run: | | |
cd FrontEnd | |
npm run lint |