From a525652907dcc2c62d372b00ed9cde026ae21323 Mon Sep 17 00:00:00 2001 From: Himanshu Sharma Date: Wed, 4 Dec 2024 16:03:33 +0530 Subject: [PATCH] fixed start server step --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 42de3f2..9e3dcc8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -86,9 +86,10 @@ jobs: cmd.exe /c "powershell -NoProfile -ExecutionPolicy unrestricted -Command `"[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; &([scriptblock]::Create((Invoke-WebRequest -UseBasicParsing 'https://raw.githubusercontent.com/metacall/install/master/install.ps1')))`"" - name: Start Faas Server + shell: bash run: | - npm run start % - timeout /t 30 + npm start & + - name: Run Integration Tests shell: bash