Skip to content

get rid of package files at root #35

get rid of package files at root

get rid of package files at root #35

Workflow file for this run

name: Frontend Build
on: [push, pull_request]
jobs:
frontend:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install frontend dependencies
working-directory: frontend
run: npm install
- name: Build frontend
working-directory: frontend
run: npm run build