Skip to content

Latest commit

 

History

History
58 lines (38 loc) · 1.05 KB

README.md

File metadata and controls

58 lines (38 loc) · 1.05 KB

Meilisearch

Seal Fighter V

Front-end

This directory contains the source code of a basic React application designed for this technical test.

Set up your environment

Install Node and npm

Make sure you have Node and npm or yarn installed on your environment. We advise you to use a Version manager as nvm and use Node >= 16.

Set up the project

Install the dependencies by running the following command on the /front directory:

yarn install

Run the Front-end

You can now run the front-end application (it will default to the port 3000)

yarn start

Development

We have created a simple CI that run tests and runs a linter to check the code quality and functionality.

Run the linter

# Without autocorrect
yarn lint

# With autocorrect
yarn lint:fix

Run the tests

# Cypress run
yarn test
# Cypress open
yarn test:watch