From f39234d3d430cca01ed02ea4ba4e702808163f7c Mon Sep 17 00:00:00 2001 From: Omarjabari007 Date: Wed, 4 Mar 2026 20:24:25 +0200 Subject: [PATCH 1/5] MYNAME --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index e58be39d95..95ecb7ba61 100644 --- a/README.md +++ b/README.md @@ -22,3 +22,5 @@ npm run dev _This starts the server in non-database mode._ It will serve a simple webpage at `http://localhost:8080`. You do _not_ need to set up a database or any interactivity on the webpage yet. Instructions for that will come later in the course! + +omar \ No newline at end of file From d5a5aeb5addbdc72cc10b0e21bb08c8905b8fcd5 Mon Sep 17 00:00:00 2001 From: Omarjabari007 Date: Wed, 4 Mar 2026 20:27:02 +0200 Subject: [PATCH 2/5] myname2 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 95ecb7ba61..bf6435df9c 100644 --- a/README.md +++ b/README.md @@ -23,4 +23,4 @@ _This starts the server in non-database mode._ It will serve a simple webpage at You do _not_ need to set up a database or any interactivity on the webpage yet. Instructions for that will come later in the course! -omar \ No newline at end of file +omar. \ No newline at end of file From 2a93b532221c2a2e22c24151c8b568f5c23ee59d Mon Sep 17 00:00:00 2001 From: Omarjabari007 Date: Thu, 5 Mar 2026 21:15:00 +0200 Subject: [PATCH 3/5] Add CI workflow --- .github/workflows/ci.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000000..640cdc39bb --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,22 @@ +name: ci + +on: + pull_request: + branches: [main] + +jobs: + tests: + name: Tests + runs-on: ubuntu-latest + + steps: + - name: Check out code + uses: actions/checkout@v4 + + - name: Set up Node + uses: actions/setup-node@v4 + with: + node-version: 22 + + - name: Force Failure + run: (exit 1) From f4c3276e6a9cf0f2fb6e5c6c3cf2bc31fa946114 Mon Sep 17 00:00:00 2001 From: Omarjabari007 Date: Thu, 5 Mar 2026 21:21:38 +0200 Subject: [PATCH 4/5] Print node version in CI --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 640cdc39bb..831aa313b2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,5 +18,5 @@ jobs: with: node-version: 22 - - name: Force Failure - run: (exit 1) + - name: Print Node version + run: node --version From 5925d7790f53c6eeadec2db6310b719bc9ddb522 Mon Sep 17 00:00:00 2001 From: Omarjabari007 Date: Thu, 5 Mar 2026 21:26:44 +0200 Subject: [PATCH 5/5] Use Node 22.x in CI --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 831aa313b2..3ae8183621 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: - name: Set up Node uses: actions/setup-node@v4 with: - node-version: 22 + node-version: 22.x - name: Print Node version run: node --version