From 74fa9a6b2bd9df95e09c195564e5a6c4b2b491ad Mon Sep 17 00:00:00 2001 From: Pierre Tachoire Date: Thu, 17 Apr 2025 17:56:17 +0200 Subject: [PATCH] ci: use the demo go runner --- .github/workflows/e2e-test.yml | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) diff --git a/.github/workflows/e2e-test.yml b/.github/workflows/e2e-test.yml index 732c6fa6..779f2c91 100644 --- a/.github/workflows/e2e-test.yml +++ b/.github/workflows/e2e-test.yml @@ -127,21 +127,8 @@ jobs: - run: chmod a+x ./lightpanda - - name: run puppeteer links + - name: run end to end tests run: | ./lightpanda serve & echo $! > LPD.pid - node puppeteer/links.js || exit 1 + go run runner/main.go --verbose kill `cat LPD.pid` - - - name: run puppeteer dump - run: | - ./lightpanda serve & echo $! > LPD.pid - node puppeteer/dump.js || exit 1 - kill `cat LPD.pid` - - - name: run playwright connect - run: | - python3 -m http.server 1234 -d ./public & echo $! > PYTHON.pid - ./lightpanda serve & echo $! > LPD.pid - node playwright/connect.js || exit 1 - kill `cat LPD.pid` `cat PYTHON.pid`