Skip to content

chore(deps): bump actions/checkout from 4.1.1 to 4.1.7 #28

chore(deps): bump actions/checkout from 4.1.1 to 4.1.7

chore(deps): bump actions/checkout from 4.1.1 to 4.1.7 #28

name: Verify Server start
on:
pull_request:
types: ['opened', 'reopened', 'synchronize']
jobs:
check-health:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
with:
fetch-depth: 1
- name: Setup Node
uses: actions/[email protected]
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Start server
run: npm run build:start &
- name: Wait for server to start
run: sleep 10 # Adjust the time as necessary for your server to start
- name: Check server health
run: |
curl --fail http://localhost:9090/health || exit 1