Skip to content

Create blank .env file during Github Actions docker build #38

Create blank .env file during Github Actions docker build

Create blank .env file during Github Actions docker build #38

Workflow file for this run

name: Frontend
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "16"
- name: Install dependencies
working-directory: ./ui
run: npm ci
- name: Build the frontend
working-directory: ./ui
run: npm run build
- name: Run unit tests
working-directory: ./ui
run: npm test
- name: Start the application
working-directory: ./ui
run: |
npm start &
sleep 5
- name: Check application response
run: |
response=$(curl -s -o /dev/null -w "%{http_code}" http://localhost:3000)
if [[ "$response" == "200" ]]; then
echo "Application launched successfully"
else
echo "Application failed to launch"
exit 1
fi