diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000000..43643b995c --- /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: Print Node Version + run: node --version diff --git a/README.md b/README.md index e58be39d95..ad5235395e 100644 --- a/README.md +++ b/README.md @@ -1,24 +1,26 @@ -# 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! + +JEANPAUL version of Boot.dev's Notely app. \ No newline at end of file