From e0963e99f9c66686057831aae0722965a012c570 Mon Sep 17 00:00:00 2001 From: haavats Date: Mon, 29 Sep 2025 16:08:57 +0300 Subject: [PATCH 1/3] uus readme --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 7c219b456..572f2d392 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! + +"Ats's version of Boot.dev's Notely app." From eb260f300e67ec82cda34113d96248b928282176 Mon Sep 17 00:00:00 2001 From: haavats Date: Mon, 29 Sep 2025 16:18:40 +0300 Subject: [PATCH 2/3] added .github --- .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 2edc004820ad304d763ce606a1810e09fd0139c3 Mon Sep 17 00:00:00 2001 From: haavats Date: Mon, 29 Sep 2025 16:22:51 +0300 Subject: [PATCH 3/3] changed ci workflow --- .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..c04f4df01 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: Check Node Version + run: node --version