From bea06e9aea46fc1a7586d2b73fd5d6e2bf07f22f Mon Sep 17 00:00:00 2001 From: Renan Bez Date: Fri, 3 Oct 2025 15:02:55 -0300 Subject: [PATCH 1/3] feat: changed readme.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 7c219b456..bc0746918 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! + +Renan's version of Boot.dev Notely app From d4f39de516d7e8ccdce70b36084a82e96760f783 Mon Sep 17 00:00:00 2001 From: Renan Bez Date: Fri, 3 Oct 2025 15:10:53 -0300 Subject: [PATCH 2/3] feat: added ci.yml --- .github/workflows/ci.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 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..a37516f6b --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,23 @@ +name: ci + +on: + pull_request: + branchs: [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: + nonde-version: 18 + + - name: Force Failue + run: (exit 1) + From 9b62507b048ffbfb1c1f574e63da22f54e6268af Mon Sep 17 00:00:00 2001 From: Renan Bez Date: Fri, 3 Oct 2025 15:15:18 -0300 Subject: [PATCH 3/3] refactor: ci.yml with node version --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a37516f6b..869738eb1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,8 +16,8 @@ jobs: - name: Set up Node uses: actions/setup-node@v4 with: - nonde-version: 18 + node-version: 18 - - name: Force Failue - run: (exit 1) + - name: Check Node + run: node --version