Skip to content
This repository has been archived by the owner on Aug 27, 2024. It is now read-only.

🛠️ Added CI/CD

🛠️ Added CI/CD #1

Workflow file for this run

name: Insight-Ink CI/CD
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install dependencies
run: |
cd Frontend
npm install
- name: Build React app
run: |
cd Frontend
npm run build
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install Python dependencies
run: |
cd Backend
pip install -r requirements.txt