From 2f6d242763a61ecd6e42195050eea64b61d3bc9b Mon Sep 17 00:00:00 2001 From: Necrosis404 <160824559+Necrosis404@users.noreply.github.com> Date: Thu, 19 Jun 2025 03:54:13 +0530 Subject: [PATCH 1/5] Create lighthouse.yml lighthouse functionality added --- .github/workflows/lighthouse.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/lighthouse.yml diff --git a/.github/workflows/lighthouse.yml b/.github/workflows/lighthouse.yml new file mode 100644 index 0000000..85eceec --- /dev/null +++ b/.github/workflows/lighthouse.yml @@ -0,0 +1,13 @@ +name: Lighthouse CI +on: [push, pull_request] +jobs: + lighthouse: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Install Node + uses: actions/setup-node@v3 + with: + node-version: '18' + - run: npm install -g @lhci/cli + - run: lhci autorun || echo "Lighthouse audit failed!" From 09995eabe2d256f6399b4f5c76a840efe4f9ca22 Mon Sep 17 00:00:00 2001 From: Necrosis404 <160824559+Necrosis404@users.noreply.github.com> Date: Thu, 19 Jun 2025 03:50:53 +0530 Subject: [PATCH 2/5] Update index.html --- index.html | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/index.html b/index.html index 373e634..c2f6c59 100644 --- a/index.html +++ b/index.html @@ -471,6 +471,52 @@

Find us on

+ + + + + + + + + From fce0ed30321e73903ad00ac9e6a88ccf02b0255a Mon Sep 17 00:00:00 2001 From: Necrosis404 <160824559+Necrosis404@users.noreply.github.com> Date: Thu, 19 Jun 2025 18:28:00 +0530 Subject: [PATCH 3/5] Update index.html --- index.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index c2f6c59..80093f0 100644 --- a/index.html +++ b/index.html @@ -471,6 +471,8 @@

Find us on

+ + @@ -510,7 +512,7 @@

Find us on

} }; - // When STT button clicked, scroll to top + // When STT button clicked it Scrolls to Top function topFunction() { document.body.scrollTop = 0; // Safari document.documentElement.scrollTop = 0; From 0cd08423aef405526b754bbc5e936d89c1629018 Mon Sep 17 00:00:00 2001 From: Necrosis404 <160824559+Necrosis404@users.noreply.github.com> Date: Thu, 19 Jun 2025 18:31:56 +0530 Subject: [PATCH 4/5] Update index.html Fix DCO: Add signed-off commit Signed-off-by: Necrosis404 --- index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index 80093f0..61aabd0 100644 --- a/index.html +++ b/index.html @@ -7,7 +7,7 @@ - Keploy - Open source e2e testing toolkit for developers @@ -30,7 +30,7 @@ - @@ -471,7 +471,7 @@

Find us on

- + From d73791198af8d8e1ef470a60fb7a34712d4e9428 Mon Sep 17 00:00:00 2001 From: Necrosis404 <160824559+Necrosis404@users.noreply.github.com> Date: Thu, 19 Jun 2025 18:47:01 +0530 Subject: [PATCH 5/5] Delete .github/workflows/lighthouse.yml --- .github/workflows/lighthouse.yml | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 .github/workflows/lighthouse.yml diff --git a/.github/workflows/lighthouse.yml b/.github/workflows/lighthouse.yml deleted file mode 100644 index 85eceec..0000000 --- a/.github/workflows/lighthouse.yml +++ /dev/null @@ -1,13 +0,0 @@ -name: Lighthouse CI -on: [push, pull_request] -jobs: - lighthouse: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - name: Install Node - uses: actions/setup-node@v3 - with: - node-version: '18' - - run: npm install -g @lhci/cli - - run: lhci autorun || echo "Lighthouse audit failed!"