Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 1.09 KB

README.md

File metadata and controls

24 lines (18 loc) · 1.09 KB

Bootcamp Challenge - Week 2, Weekend challenge

Game of life

Program the game of life. The universe of the Game of Life is an infinite, two-dimensional orthogonal grid of square cells, each of which is in one of two possible states: live or dead. Every cell interacts with its eight neighbours, which are the cells that are horizontally, vertically, or diagonally adjacent. At each step in time, the following transitions and rules have to be met:

  1. Any live cell with two or three live neighbours survives.
  2. Any dead cell with three live neighbours becomes a live cell.
  3. All other live cells die in the next generation. Similarly, all other dead cells stay dead.

Requirements.

  • Jest testing.
  • SonarCloud code analysis.
  • Netlify deploy.
  • Husky (git hooks).
  • BEM Methodology.
  • CI/CD Pipelines through GitHub Actions.
  • Protect main branch:
    • Can't push without pull request.
    • Can't push if pipelines checks haven't passed.

Production (click)
SonarCloud (click)