From 654ebbad4d466fad24de1dc0ba68a0be2d45fb4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gyarmati=20Tam=C3=A1s?= Date: Sat, 11 Jul 2026 13:29:12 +0200 Subject: [PATCH 1/2] updated readme.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index e58be39d95..d18ba4d9ef 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! +TamasGyarmati's version of Boot.dev's Notely app. From ed4ca5f16234f9791e77062154e5bc453801d2ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gyarmati=20Tam=C3=A1s?= Date: Fri, 17 Jul 2026 10:33:41 +0200 Subject: [PATCH 2/2] added workflows/ci.yml --- .github/ci.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/ci.yml diff --git a/.github/ci.yml b/.github/ci.yml new file mode 100644 index 0000000000..c99287a345 --- /dev/null +++ b/.github/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@v6 + with: + node-version: 22 + + - name: Force Failure + run: (exit 1)