From a06ba55066555bb50c00cd5bc6041291456e87c3 Mon Sep 17 00:00:00 2001 From: JMelendezvillanueva Date: Mon, 22 Jun 2026 23:04:22 -0400 Subject: [PATCH 1/4] Update README with my name --- README.md | 48 ++++++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/README.md b/README.md index e58be39d95..aa26612390 100644 --- a/README.md +++ b/README.md @@ -1,24 +1,24 @@ -# learn-cicd-typescript-starter (Notely) - -This repo contains the typescript starter code for the "Notely" application for the "Learn CICD" course on [Boot.dev](https://boot.dev). - -## Local Development - -Make sure you're on Node version 22+. - -Create a `.env` file in the root of the project with the following contents: - -```bash -PORT="8080" -``` - -Run the server: - -```bash -npm install -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! +# learn-cicd-typescript-starter (Notely) + +This repo contains the typescript starter code for the "Notely" application for the "Learn CICD" course on [Boot.dev](https://boot.dev). + +## Local Development + +Make sure you're on Node version 22+. + +Create a `.env` file in the root of the project with the following contents: + +```bash +PORT="8080" +``` + +Run the server: + +```bash +npm install +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! From a16dadd3f14fd9eba331ba6247909d266111a90e Mon Sep 17 00:00:00 2001 From: JMelendezvillanueva Date: Mon, 22 Jun 2026 23:12:58 -0400 Subject: [PATCH 2/4] Update README with my name --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index aa26612390..ad5235395e 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! + +JEANPAUL version of Boot.dev's Notely app. \ No newline at end of file From 4f4264f75cb87cc1a70770434d8769cc37180f17 Mon Sep 17 00:00:00 2001 From: Jean Melendez Date: Mon, 22 Jun 2026 23:30:15 -0400 Subject: [PATCH 3/4] Create CI workflow for testing with Node.js This CI workflow checks out the code, sets up Node.js, and includes a step that forces a failure for testing purposes. --- .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..dadda3f05c --- /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) From 32cf441f8b19f2f4e1c8688ae8fcee6824d8c79f Mon Sep 17 00:00:00 2001 From: Jean Melendez Date: Mon, 22 Jun 2026 23:36:14 -0400 Subject: [PATCH 4/4] Replace Force Failure step with Print Node Version --- .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 dadda3f05c..43643b995c 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) + - name: Print Node Version + run: node --version