From 403694a67bcd7b1d1ea0dd8092222e18650114b1 Mon Sep 17 00:00:00 2001 From: uqjwil28 Date: Wed, 5 Nov 2025 14:09:57 +1000 Subject: [PATCH 1/3] Step 4 --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 7c219b456..04c2fd4a0 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! + +Juzzy's version of Boot.dev's Notely app From 3e7e9f51efd9624bd219dba2315ebddb886c5efb Mon Sep 17 00:00:00 2001 From: uqjwil28 Date: Wed, 5 Nov 2025 14:38:54 +1000 Subject: [PATCH 2/3] Added CI --- .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 000000000..fdd087dff --- /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: 18 + + - name: Force Failure + run: (exit 1) From 7face732760fde47fa71452693b0f13342ed1e76 Mon Sep 17 00:00:00 2001 From: uqjwil28 Date: Wed, 5 Nov 2025 14:49:47 +1000 Subject: [PATCH 3/3] Removed force fail --- .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 fdd087dff..48b7485e9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,5 +18,5 @@ jobs: with: node-version: 18 - - name: Force Failure - run: (exit 1) + - name: List node version + run: node --version