File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -22,4 +22,32 @@ To launch the application, follow these steps:
22224. Launch the application:
2323 ` ` ` sh
2424 npm run dev
25- ` ` `
25+ ` ` `
26+
27+ # # Formatting and Linting
28+
29+ When you push your changes to the repository, one of the Github workflows automatically performs a linting check, as well as an automated formatting.
30+ To run the linting or formatting by yourself, type:
31+
32+ ` ` ` sh
33+ npm run lint
34+ npm run prettier
35+ ` ` `
36+
37+ To avoid/fix merge conflicts due to the automated formatting, you can do either:
38+
39+ 1. Call ` npm run prettier` locally before you push.
40+ 2. Or before you push a second time, first pull the new formatting changes.
41+ 3. Or ` rebase` and simply overwrite all formatting changes of the remote with your current code. The formatting will anyways be executed again.
42+
43+ # # Tests
44+
45+ For detailed testing descriptions, see [the testing documentation](TESTING.md)
46+
47+ In short, run unit tests and end-to-end tests the following way:
48+
49+
50+ ` ` ` sh
51+ npm run test
52+ npm run test:e2e
53+ ` ` `
You can’t perform that action at this time.
0 commit comments