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 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