Skip to content

Merge pull request #88 from ComputerSocietyVITC/feat/fileUpload #82

Merge pull request #88 from ComputerSocietyVITC/feat/fileUpload

Merge pull request #88 from ComputerSocietyVITC/feat/fileUpload #82

Workflow file for this run

name: CI Workflow
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
- name: Install Dependencies
run: npm install
- name: Run ESLint
run: npm run lint
- name: Build the Project
run: npm run build