Skip to content

delete source command #26

delete source command

delete source command #26

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