From b1ba0b47aa75eec6b8337f7c56054e350e64ad57 Mon Sep 17 00:00:00 2001 From: Himanshu Sharma Date: Wed, 4 Dec 2024 15:36:08 +0530 Subject: [PATCH] running server outside docker --- .github/workflows/ci.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d8268e7..331519d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -85,7 +85,14 @@ jobs: run: | 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 + run: | + npm run start % + timeout /t 30 + - name: Run Integration Tests shell: bash - run: ./test/test.sh + run: | + chmod +x ./test/test.sh + ./test/test.sh \ No newline at end of file