From 6155151d69cdc478806878799c94e29c31d2be2f Mon Sep 17 00:00:00 2001 From: Memoona-Iftikhar <240541@students.au.edu.pk> Date: Sat, 14 Feb 2026 20:03:05 +0500 Subject: [PATCH 1/6] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a9049b4779..0434a79bba 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Full Stack FastAPI Template - +learning Test Docker Compose Test Backend Coverage From 014f58dc766b30aeccd30d5b1d51924d12f45358 Mon Sep 17 00:00:00 2001 From: Memoona-Iftikhar <240541@students.au.edu.pk> Date: Sat, 14 Feb 2026 20:04:24 +0500 Subject: [PATCH 2/6] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0434a79bba..3f6fc071e9 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Full Stack FastAPI Template -learning +learning . Test Docker Compose Test Backend Coverage From f137355713d170adf61f218a8d6f2c5a192d9ae0 Mon Sep 17 00:00:00 2001 From: Memoona Iftikhar <240541@gmail.com> Date: Sat, 14 Feb 2026 20:40:10 +0500 Subject: [PATCH 3/6] Added GitHub Action workflow --- .github/workflows/main.yml | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000000..e69de29bb2 From 6c78cc26a72f1f3ca56308f3d07133bfc8c1d86e Mon Sep 17 00:00:00 2001 From: Memoona Iftikhar <240541@gmail.com> Date: Sat, 14 Feb 2026 21:37:24 +0500 Subject: [PATCH 4/6] Added GitHub Action file correctly --- .github/workflows/main.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e69de29bb2..8a371cf4a2 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -0,0 +1,11 @@ +name: CI + +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Run a one-line script + run: echo Hello, world! \ No newline at end of file From 52f501c7a3bb4543d280567fa95eea4cdba634b0 Mon Sep 17 00:00:00 2001 From: Memoona Iftikhar <240541@gmail.com> Date: Sat, 14 Feb 2026 21:48:29 +0500 Subject: [PATCH 5/6] Task 8: Added Node.js CI/CD pipeline --- .github/workflows/cicd.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/cicd.yml diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml new file mode 100644 index 0000000000..178c5ed59a --- /dev/null +++ b/.github/workflows/cicd.yml @@ -0,0 +1,16 @@ +name: CI/CD + +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Set up Node.js + uses: actions/setup-node@v2 + with: + node-version: '14' + - run: npm install + - run: npm test \ No newline at end of file From 789ee52f15424e02f3a420be273bf9fdf11dabf6 Mon Sep 17 00:00:00 2001 From: Memoona Iftikhar <240541@gmail.com> Date: Sat, 14 Feb 2026 21:57:15 +0500 Subject: [PATCH 6/6] Task 9: Security best practices implemented --- .gitignore | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index f903ab6066..713d5006da 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,2 @@ -.vscode/* -!.vscode/extensions.json node_modules/ -/test-results/ -/playwright-report/ -/blob-report/ -/playwright/.cache/ +.env