Skip to content

lanceschi/todo

Repository files navigation

ci

1. Demo

A live demo can be tested at https://lanceschi.github.io/todo

2. Development notes

2.1. Run in development mode

  • cd to repo folder
  • install node v12.18 or use NVM
$ nvm install 12.18
$ nvm use
  • start webserver in development mode:
$ npm start

Open the browser at localhost:3000

2.2. Build the webapp

  • cd to repo folder
  • launch the build script
$ npm run build
  • Output folder is dist/

2.3. Launch the webapp test coverage

  • cd to repo folder
  • launch the build script
$ npm run test:coverage

3. Notes

This repo embeds a automatised github action workflow in order to test every git commit, merge and release operations.