summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml11
1 files changed, 5 insertions, 6 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 25fd7f2..eedbcc1 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -2,7 +2,7 @@ image: electronuserland/builder:wine
cache:
paths:
- - node_modules/
+ - node_modules/
stages:
- prepare
@@ -10,26 +10,25 @@ stages:
- build
- package
-
npmi:
stage: prepare
script:
- - npm install
+ - npm install
test_formatting:
stage: test
script:
- - npm run formatting:check
+ - npm run formatting:check
build:
stage: build
script:
- - npm run build
+ - npm run build
electron-builder:
stage: package
script:
- - npm run package
+ - npm run package
artifacts:
paths:
- "out/**"