From 5d463989093df364d6b062549e5eae8889c0bdbf Mon Sep 17 00:00:00 2001 From: Jared Date: Thu, 2 Jul 2026 16:06:31 -0400 Subject: [PATCH 1/3] pr --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index e58be39d95..2345982db2 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! + +Jared's version of Boot.dev's Notely app. \ No newline at end of file From 4ff5f6a1e17ad9a2e67c940033739153a7d43ca9 Mon Sep 17 00:00:00 2001 From: Jared Date: Sat, 4 Jul 2026 13:50:03 -0400 Subject: [PATCH 2/3] tests --- .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..5faeabf296 --- /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@v6 + + - name: Set up Node + uses: actions/setup-node@v5 + with: + node-version: 22 + + - name: Force Failure + run: (exit 1) \ No newline at end of file From 9efb658bfb6b60129951d31cd50227e89bac0a67 Mon Sep 17 00:00:00 2001 From: Jared Date: Sun, 5 Jul 2026 21:17:30 -0400 Subject: [PATCH 3/3] Modified 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 5faeabf296..2559848c0f 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) \ No newline at end of file + - name: Version + run: node --version \ No newline at end of file