From 31fd7b0c38358a9f6aa3c9eb319b792a77d178a6 Mon Sep 17 00:00:00 2001 From: Basil-Aladra Date: Wed, 11 Mar 2026 13:46:51 +0200 Subject: [PATCH 1/4] update README with my version note --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index e58be39d95..4228091e2c 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! + +Basil's version of Boot.dev's Notely app. From d5e4afa2dc885821da2b02d44e521ae5297c7313 Mon Sep 17 00:00:00 2001 From: Basil-Aladra Date: Wed, 11 Mar 2026 13:59:30 +0200 Subject: [PATCH 2/4] 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 deb24ee227ae077f92e32580bb9700d9d29f6281 Mon Sep 17 00:00:00 2001 From: Basil-Aladra Date: Wed, 11 Mar 2026 14:00:42 +0200 Subject: [PATCH 3/4] add CI workflow --- .github/workflows/ci.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 640cdc39bb..9cdc82601b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,7 +1,5 @@ -name: ci - -on: - pull_request: +git add .github/workflows/ci.ymlname: ci git commit -m "add CI workflow" on: +git push origin addtests pull_request: branches: [main] jobs: From 06c7928c8d9c5bc3a8cc931ababae87f656028eb Mon Sep 17 00:00:00 2001 From: Basil-Aladra Date: Wed, 11 Mar 2026 14:02:47 +0200 Subject: [PATCH 4/4] fix CI workflow --- .github/workflows/ci.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9cdc82601b..b77ff1f0e3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,5 +1,7 @@ -git add .github/workflows/ci.ymlname: ci git commit -m "add CI workflow" on: -git push origin addtests pull_request: +name: ci + +on: + pull_request: branches: [main] jobs: @@ -16,5 +18,5 @@ jobs: with: node-version: 22 - - name: Force Failure - run: (exit 1) + - name: Check Node version + run: node --version