4.7.0 โ€ข Published 2 months ago

epfl-elements v4.7.0

Weekly downloads
1
License
MIT
Repository
github
Last release
2 months ago

Elements

EPFL Web Styleguide

๐Ÿ‘‰ View online

Install

To contribute and run the styleguide, you will need few things :

Then, to install the project onto your workstation:

$ git clone git@github.com:epfl-si/elements.git
$ cd ./elements
$ yarn

Run locally

As listed in the package.json, the following commands are available:

  • $ yarn start : Will launch a live reloaded server to help you during development
  • $ yarn dist : Will build your assets for production usage into the dist/ directory

Backstop tests (local)

EPFL-Elements uses backstop.js to perform visual regression testing.

๐Ÿ’ก Instead of running the steps below on your workstation, you may want to have GitHub actions do the same for you in the cloud. See the next paragraph.

To run a side-by-side comparison between the original state of Elements and your changes using Backstop, you need to have a locally-running Elements Web app as per the previous ยง. Then:

  1. Make sure all your changes are committed to git (not necessarily pushed)
  2. Run yarn test:prepare๐Ÿ’ก Do not stop the EPFL-Elements Web app to type in this command! Use a new terminal window instead.
  3. Check out the upstream branch for your work (typically origin/dev): git checkout origin/dev
  4. Run yarn test:reference
  5. Check out your working branch again, e.g. git checkout feature/myfeature
  6. Run yarn test:changes
  7. The report should open in your browser automatically. If not, just open the tests/backstop/html_report/index.html file in your browser

Backstop tests (GitHub actions)

Whenever one creates or updates (pushes to the underlying branch of) a GitHub pull request, a set of GitHub actions kicks off to perform the same visual regression testing as described in the previous paragraph, except that the processing happens in the cloud.

  1. Push your work to a feature branch
  2. If not already done, create a GitHub pull request out of that feature branch
  3. Wait a few minutes for the GitHub actions to terminate. ๐Ÿ’ก If you are feeling impatient and/or bored, browse the repository's Actions tab and click your way through the yellow spinning icons to look at the logs while the GitHub actions are in progress.
  4. If all goes well, the GitHub actions' bots should append two new comments to the pull request's review thread. The second one contains a link to the Backstop report, which is a rather large (~150 Mb) file. In order to take a look at the report:
  5. Download it by clicking the link
  6. Unzip the file (๐Ÿ’ก Depending on your browser's configuration, this may happen automatically)
  7. Open the file backstop-report/html_report/index.html within the unzipped directory with your browser
  8. If you want to perform additional changes (e.g. to repair regressions spotted by Backstop), just push (or force-push) to the feature branch. When done, the GitHub actions will update the same two review messages in the PR thread (instead of creating new ones).

Create a new release

  1. Ensure that your ~/.yarnrc contains a line like registry "https://registry.npmjs.org/"
  2. Ensure that all the desired changes have been merged into the main (dev) branch on GitHub
  3. Type yarn release and follow the interactive instructions.

The last step will cause the following things to happen:

  • Ensure that you are on the dev branch (or bail out if not)
  • Bump version number
  • Commit, tag and push

... And in turn, that last step will cause the following things to happen server-side, using GitHub Actions: