From 2b4ca44c541490994581738ab82c1caefb86e3e3 Mon Sep 17 00:00:00 2001 From: bhaktatejas922 Date: Thu, 8 Jan 2026 18:59:44 -0800 Subject: [PATCH 1/4] Add feature --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 8dc91c3..f6d52a0 100644 --- a/README.md +++ b/README.md @@ -1 +1,2 @@ # Test Action Repo +Added feature From f0bd54aff365b18aca76cc071be0f2191c20a02b Mon Sep 17 00:00:00 2001 From: bhaktatejas922 Date: Thu, 8 Jan 2026 19:44:01 -0800 Subject: [PATCH 2/4] Add Morph preview test workflow --- .github/workflows/preview-test.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/preview-test.yml diff --git a/.github/workflows/preview-test.yml b/.github/workflows/preview-test.yml new file mode 100644 index 0000000..14f198b --- /dev/null +++ b/.github/workflows/preview-test.yml @@ -0,0 +1,28 @@ +name: Preview Test + +on: + pull_request: + types: [opened, synchronize, reopened] + +jobs: + test-preview: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + # In a real setup, this would be your deployment step + # For testing, we'll use a dummy URL + - name: Mock Deploy + id: deploy + run: | + echo "url=https://example-preview-${{ github.event.pull_request.number }}.vercel.app" >> $GITHUB_OUTPUT + + - name: Run Morph Preview Test + uses: morphllm/preview-test-action@v1 + with: + api-key: ${{ secrets.MORPH_API_KEY }} + preview-url: ${{ steps.deploy.outputs.url }} + instructions: | + Test the main page loads correctly. + Check for any JavaScript errors in the console. From afbbc515e7293f74b8f304738e3c3bd96180146a Mon Sep 17 00:00:00 2001 From: bhaktatejas922 Date: Thu, 8 Jan 2026 19:44:50 -0800 Subject: [PATCH 3/4] Trigger preview test workflow From 6bc4a518da187bfb6280304bbbc09d4d4f6a7e1a Mon Sep 17 00:00:00 2001 From: bhaktatejas922 Date: Thu, 8 Jan 2026 21:40:30 -0800 Subject: [PATCH 4/4] Test GitHub Action workflow