Skip to content

feat: add drag drop support to upload #40

feat: add drag drop support to upload

feat: add drag drop support to upload #40

Workflow file for this run

name: Build
on:
push:
branches:
- dev
pull_request:
branches:
- main
- dev
types:
- opened
- synchronize # Run the workflow when new commits are pushed to the PR
- reopened
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: "18"
- name: Install dependencies
run: npm ci
- name: Build project
env:
REACT_APP_CHATBOT_API_URL: ${{ vars.REACT_APP_CHATBOT_API_URL }}
run: npm run build