summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 93c5b0e116194147792b42321a5144a066a5ff19 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
image: node:lts

cache:
  paths:
  - node_modules/

stages:
  - prepare
  - build
  - package


npmi:
  stage: prepare
  script:
   - npm install

build:
  stage: build
  script:
   - npm run build

electron-builder:
  stage: package
  script:
   - npm run package
  artifacts:
    paths:
      - "out/**"