From 82e8d0d00e5e5cea7c8f2a86baea7e7240cab05b Mon Sep 17 00:00:00 2001 From: Stepan Vladovskiy Date: Thu, 4 Jul 2024 01:22:10 +0000 Subject: [PATCH] fix: change output build directory to output/public --- .github/workflows/node-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/node-ci.yml b/.github/workflows/node-ci.yml index 8b75b7e1..a3ffa147 100644 --- a/.github/workflows/node-ci.yml +++ b/.github/workflows/node-ci.yml @@ -34,7 +34,7 @@ jobs: run: npm run e2e:install - name: Serve the build directory - run: npx http-server ./dist -p 8080 --ssl --cert ./tests/certs/cert.pem --key ./tests/certs/key.pem & + run: npx http-server ./.output/public -p 8080 --ssl --cert ./tests/certs/cert.pem --key ./tests/certs/key.pem & # - name: Run e2e tests # run: npm run e2e:tests