aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorRuben Beltran del Rio <ruben@unlimited.pizza>2023-07-11 22:42:38 +0200
committerRuben Beltran del Rio <ruben@unlimited.pizza>2023-07-11 22:42:38 +0200
commitaaa1f8f65bae59680e930fa6788e4662abae332c (patch)
tree2d5f693225d9ee725db79327766a5f80b9949237 /.gitlab-ci.yml
parent7741a3cc37662ab2ff9606bdaffc0317b79a8dd9 (diff)
Update dependenciesrbdr-bouncy-walls
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml37
1 files changed, 0 insertions, 37 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
deleted file mode 100644
index c0930e8..0000000
--- a/.gitlab-ci.yml
+++ /dev/null
@@ -1,37 +0,0 @@
-image: node:8
-
-stages:
- - lint
- - build
- - deploy
-
-cache:
- key: ${CI_COMMIT_REF_SLUG}-${CI_COMMIT_SHA}
- paths:
- - node_modules/
-
-before_script:
- - npm install
-
-lint:
- stage: lint
- script:
- - npm run lint
-
-build:
- stage: build
- script:
- - npm run build
- artifacts:
- paths:
- - dist
-
-pages:
- stage: deploy
- script:
- - mv dist public
- artifacts:
- paths:
- - public
- only:
- - develop