Update Settings.py add BASE_APP_URI #112
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Continuous Integration-FE | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
continuous_integration_fe: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
- name: List root directory contents | |
run: ls -la | |
- name: Verify package.json existence | |
run: | | |
cd frontend | |
if [ ! -f package.json ]; then | |
echo "package.json not found in frontend directory!" | |
exit 1 | |
fi | |
- name: Install dependencies, build, and test | |
run: | | |
cd frontend | |
npm install | |
npm run build |