From b36983b58376d159e7ab6484c97f5ac40212618b Mon Sep 17 00:00:00 2001 From: Stepan Vladovskiy Date: Wed, 3 Jul 2024 23:38:53 +0000 Subject: [PATCH] fix: with not global http-serv install. Fingercross and last try' --- .github/workflows/node-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/node-ci.yml b/.github/workflows/node-ci.yml index 1af1f969..345698ce 100644 --- a/.github/workflows/node-ci.yml +++ b/.github/workflows/node-ci.yml @@ -28,13 +28,13 @@ jobs: run: npm run build - name: Install http-server - run: npm install -g http-server + run: npm install http-server - name: Install e2e test dependencies run: npm run e2e:install - name: Serve the build directory - run: http-server ./dist -p 8080 & + run: npx http-server ./dist -p 8080 & # Adjust "./build" to your build output directory # - name: Run e2e tests