From c964ecc9c3fa32f27838ea8132079b055363e396 Mon Sep 17 00:00:00 2001 From: abdfahmawe Date: Mon, 9 Mar 2026 03:19:23 +0200 Subject: [PATCH 1/3] add my name to readme --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index e58be39d95..80d54df0a6 100644 --- a/README.md +++ b/README.md @@ -22,3 +22,4 @@ 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! +abdfahmawe's version of Boot.dev's Notely app. From d5d9ef18128f46e8887cbf1d54571d0811f46741 Mon Sep 17 00:00:00 2001 From: abdfahmawe Date: Mon, 9 Mar 2026 03:56:09 +0200 Subject: [PATCH 2/3] add ci workflow with forced failure --- .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 5d8eb289966d27eef6e8341a90e030dd3bfe1cd5 Mon Sep 17 00:00:00 2001 From: abdfahmawe Date: Mon, 9 Mar 2026 03:58:58 +0200 Subject: [PATCH 3/3] fix ci by running node version instead of failing --- .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..d1c1082449 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: Run Node Version + run: node --version