From 7d097780c7242ba77fd83f2f906830c47ff5f65d Mon Sep 17 00:00:00 2001 From: SyedShireen Date: Fri, 16 May 2025 09:08:47 +0530 Subject: [PATCH 1/2] Added line in readme file. --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 7c219b45..04e972e0 100644 --- a/README.md +++ b/README.md @@ -22,3 +22,6 @@ 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! + + +"Shireen's version of Boot.dev's Notely app." \ No newline at end of file From 360a2746ec4d6c9d8f02039603bafbe493b51771 Mon Sep 17 00:00:00 2001 From: SyedShireen Date: Wed, 21 May 2025 12:18:56 +0530 Subject: [PATCH 2/2] Yaml file created. --- .github/workflows/ci.yaml | 22 ++++++++++++++++++++++ .github/workflows/tests.yaml | 22 ++++++++++++++++++++++ 2 files changed, 44 insertions(+) create mode 100644 .github/workflows/ci.yaml create mode 100644 .github/workflows/tests.yaml diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 00000000..8e4e7cea --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,22 @@ +name: ci-cd-basic-setup + +on: + pull_request: + branches: [main] + + +jobs: + tests: + name: Tests + runs-on: ubuntu-latest + + steps: + - name: Checkout the code + uses: actions/checkout@v4 + - name: Set up Node + uses: actions/setup-node@v4 + with: + node-version: 18 + - name: Force Failure + run: exit(1) + \ No newline at end of file diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml new file mode 100644 index 00000000..8e4e7cea --- /dev/null +++ b/.github/workflows/tests.yaml @@ -0,0 +1,22 @@ +name: ci-cd-basic-setup + +on: + pull_request: + branches: [main] + + +jobs: + tests: + name: Tests + runs-on: ubuntu-latest + + steps: + - name: Checkout the code + uses: actions/checkout@v4 + - name: Set up Node + uses: actions/setup-node@v4 + with: + node-version: 18 + - name: Force Failure + run: exit(1) + \ No newline at end of file