diff options
| author | Miquel Sabaté Solà <msabate@suse.com> | 2021-07-06 08:22:54 +0200 |
|---|---|---|
| committer | Miquel Sabaté Solà <msabate@suse.com> | 2021-07-06 08:22:54 +0200 |
| commit | 65b14a348fa0b057c3641e1fc89c8503b746507b (patch) | |
| tree | a38ba5fadf3e412f3a03f3413753ac51d35dd57f /CONTRIBUTING.md | |
| parent | 4e69d9c1ad7df3653c94bf2da0e8634563261e53 (diff) | |
| download | jo.mssola.com-65b14a348fa0b057c3641e1fc89c8503b746507b.tar.gz jo.mssola.com-65b14a348fa0b057c3641e1fc89c8503b746507b.zip | |
Added workflow
Signed-off-by: Miquel Sabaté Solà <msabate@suse.com>
Diffstat (limited to 'CONTRIBUTING.md')
| -rw-r--r-- | CONTRIBUTING.md | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..ea4b1c7 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,37 @@ +# Contributing + +In order to get started, you need to install [yarn](https://yarnpkg.com/), +[git](https://git-scm.com/) (yeah, it's actually a dependency) and a proper ruby +development environment (with bundler already installed). Then, you can simply +fetch dependencies like so: + +``` +$ yarn +$ bundle +``` + +After that, build Javascript files with: + +``` +$ yarn run webpack +``` + +And in another session start Jekyll with: + +``` +$ bundle exec jekyll serve +``` + +## Testing + +Before submitting a Pull Request, make sure that tests are passing. This can be +checked by running: + +``` +$ bundle exec rubocop +$ bundle exec rake +``` + +## Deploying + +This is already handled through a Github action, so don't worry about it. |
