Skip to content

Merge pull request #105 from harshitsaini17/feature/folder-structure #14

Merge pull request #105 from harshitsaini17/feature/folder-structure

Merge pull request #105 from harshitsaini17/feature/folder-structure #14

Workflow file for this run

name: Frontend build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '22'
- name: Install dependencies
run: |
cd frontend
npm install
- name: Build
run: |
cd frontend
npm run build