Skip to content

fix: cars with dns resolver fix over 1-78-0 #1058

fix: cars with dns resolver fix over 1-78-0

fix: cars with dns resolver fix over 1-78-0 #1058

name: Verify Server start
on:
pull_request:
types: ['opened', 'reopened', 'synchronize']
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.sha }}
cancel-in-progress: true
jobs:
check-health:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4.1.1
with:
fetch-depth: 1
- name: Setup Node
uses: actions/setup-node@v4.0.3
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