-
Notifications
You must be signed in to change notification settings - Fork 524
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Workflow CA | ||
|
||
In this CA we are tasked with applying workflow skills in installing code formatting tools, configuration and code testing. | ||
|
||
# GitHub repository | ||
|
||
I fork the gitHub repository from the gitHub provided in the CA brief and clone it to my gitHub desktop. Created the workflow branch in which i did all the workflow tasks and committed into the workflow branch. | ||
Open the github repo on vscode and use the vscode terminal to install and configure the different extensions for the workflow CA. | ||
|
||
# Installed dependencies | ||
- npm init | ||
- installing Prettier | ||
- Installing eslint | ||
- npm run lint-fix (to fix errors notice by eslint) | ||
- Installing hooks (npx mrm@2 lint-staged) | ||
|
||
# Tests installed and configured for the project | ||
|
||
- Installed jest (npm i -D jest@29.2.0) for our unit testings | ||
- npm i -D eslint-plugin-jest (this to setup the environment for the jest configuration) | ||
- Installed babel for jest | ||
- Installed cypress ( for end-to-end testings) |