From ed875f70302b1a58fd69e463151b383416c75af2 Mon Sep 17 00:00:00 2001 From: Damien Boisvert Date: Thu, 24 Jul 2025 12:42:58 -0400 Subject: [PATCH 1/4] working on it --- testFile | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 testFile diff --git a/testFile b/testFile new file mode 100644 index 0000000..e69de29 From d30b2a8fea107a13e4784f3f955351d613beffe4 Mon Sep 17 00:00:00 2001 From: Damien Boisvert Date: Thu, 24 Jul 2025 13:39:57 -0400 Subject: [PATCH 2/4] feat: file test 2 --- file2 | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 file2 diff --git a/file2 b/file2 new file mode 100644 index 0000000..e69de29 From 160fe99a4a09fc0ed8601ae65726499fc6464e22 Mon Sep 17 00:00:00 2001 From: Damien Boisvert Date: Thu, 24 Jul 2025 18:52:03 -0400 Subject: [PATCH 3/4] fix: This is my punishment for fighting the YAML / GitHub Actions demons --- .github/workflows/lighthouse.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/lighthouse.yml b/.github/workflows/lighthouse.yml index fa0d9e2..d15f842 100644 --- a/.github/workflows/lighthouse.yml +++ b/.github/workflows/lighthouse.yml @@ -11,7 +11,9 @@ permissions: jobs: lighthouse: - runs-on: ghcr.io/stanthonynovato/say-website-builder:latest + runs-on: ubuntu-latest + container: + image: ghcr.io/stanthonynovato/say-website-builder:latest steps: - name: ๐Ÿงพ Checkout code From 86126a4d9cc23da3a7287cdb09ece73e14239063 Mon Sep 17 00:00:00 2001 From: Damien Boisvert Date: Thu, 24 Jul 2025 18:54:47 -0400 Subject: [PATCH 4/4] fix: use host 0.0.0.0 --- .github/workflows/lighthouse.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lighthouse.yml b/.github/workflows/lighthouse.yml index d15f842..1c7ffde 100644 --- a/.github/workflows/lighthouse.yml +++ b/.github/workflows/lighthouse.yml @@ -38,7 +38,7 @@ jobs: - name: ๐Ÿš€ Start Jekyll Server in background run: | - JEKYLL_ENV=production bundle exec jekyll serve --port 4000 --host 127.0.0.1 & + JEKYLL_ENV=production bundle exec jekyll serve --port 4000 --host 0.0.0.0 & echo $! > jekyll.pid - name: ๐Ÿ•ฐ Wait for server to be ready