diff options
| author | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2020-09-21 01:08:04 +0200 |
|---|---|---|
| committer | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2020-09-21 01:08:04 +0200 |
| commit | 2a9da17faafd1e53808218e97cc210498b9a1519 (patch) | |
| tree | fea6a2d27f5e2aebcc55228e719a14a55b740d80 | |
| parent | 8d2dfbab7667bef775f220f2d88c0f1f4aab7805 (diff) | |
Add Gitlab CI config
| -rw-r--r-- | .gitlab-ci.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..cc95c38 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,18 @@ +image: node:14 + +stages: + - lint + - test + +before_script: + - npm install + +lint: + stage: lint + script: + - npm run lint + +test: + stage: test + script: + - npm test |