License #40
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: 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 |