From ca329bd9186d12d79ed0be43c9c85643cfe7b582 Mon Sep 17 00:00:00 2001 From: Prijith Date: Sat, 1 Aug 2026 12:44:43 +0530 Subject: [PATCH 1/5] Github Actions Test PullRequest --- .github/test.yml | 0 .github/workflows | 0 2 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 .github/test.yml create mode 100644 .github/workflows diff --git a/.github/test.yml b/.github/test.yml new file mode 100644 index 0000000..e69de29 diff --git a/.github/workflows b/.github/workflows new file mode 100644 index 0000000..e69de29 From 397ffced722729e40a0a11ad3423bf89330416b4 Mon Sep 17 00:00:00 2001 From: Prijith Date: Sat, 1 Aug 2026 13:06:13 +0530 Subject: [PATCH 2/5] New updated --- .github/workflows | 0 .github/{ => workflows}/test.yml | 0 2 files changed, 0 insertions(+), 0 deletions(-) delete mode 100644 .github/workflows rename .github/{ => workflows}/test.yml (100%) diff --git a/.github/workflows b/.github/workflows deleted file mode 100644 index e69de29..0000000 diff --git a/.github/test.yml b/.github/workflows/test.yml similarity index 100% rename from .github/test.yml rename to .github/workflows/test.yml From ec17f20504c4d3b2ac2652f824f70709e567e103 Mon Sep 17 00:00:00 2001 From: Prijith John Date: Sat, 1 Aug 2026 13:07:37 +0530 Subject: [PATCH 3/5] Update test.yml --- .github/workflows/test.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e69de29..6ed80c4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -0,0 +1,19 @@ +name: Test Project + +on: + pull_request: + branches: + - main + +jobs: + test: + runs-on: ubuntu-latest + container: + image: node:20 + steps: + - uses: actions/checkout@v3 + with: + node-version: 20 + - run: npm ci + - run: npm test + - run: npm run build From 99678c66ab197543f8a33dc8e3e4fc35e210dbca Mon Sep 17 00:00:00 2001 From: Prijith John Date: Sat, 1 Aug 2026 13:09:16 +0530 Subject: [PATCH 4/5] Delete test workflow from GitHub Actions Remove GitHub Actions workflow for testing the project --- .github/workflows/test.yml | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6ed80c4..d3f5a12 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,19 +1 @@ -name: Test Project -on: - pull_request: - branches: - - main - -jobs: - test: - runs-on: ubuntu-latest - container: - image: node:20 - steps: - - uses: actions/checkout@v3 - with: - node-version: 20 - - run: npm ci - - run: npm test - - run: npm run build From baba88a818d65b3e60394c34d1884499a5110777 Mon Sep 17 00:00:00 2001 From: Prijith John Date: Sat, 1 Aug 2026 13:09:28 +0530 Subject: [PATCH 5/5] Update test.yml --- .github/workflows/test.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d3f5a12..6ed80c4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1 +1,19 @@ +name: Test Project +on: + pull_request: + branches: + - main + +jobs: + test: + runs-on: ubuntu-latest + container: + image: node:20 + steps: + - uses: actions/checkout@v3 + with: + node-version: 20 + - run: npm ci + - run: npm test + - run: npm run build