diff options
| author | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2021-04-22 00:41:15 +0200 |
|---|---|---|
| committer | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2021-04-22 00:41:15 +0200 |
| commit | 535cbcc7b81355197af4e39549cd22a6c505d54c (patch) | |
| tree | 1f0aca00d549272e21854877531502d9a3bdee3e /.gitlab-ci.yml | |
| parent | a7500d5b46ad519c9e9a84a342e469bdac0def7a (diff) | |
Add gitlab CI config
Diffstat (limited to '.gitlab-ci.yml')
| -rw-r--r-- | .gitlab-ci.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..703003c --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,17 @@ +image: node:15 + +stages: + - lint + - test + +before_script: + - npm install + +lint: + stage: lint + script: + - npm run lint +test: + stage: test + script: + - npm run test |