summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: eedbcc1d477ed308de28120823baf6ce81e2bffa (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
30
31
32
33
34
35
36
37
image: electronuserland/builder:wine

cache:
  paths:
    - node_modules/

stages:
  - prepare
  - test
  - build
  - package

npmi:
  stage: prepare
  script:
    - npm install

test_formatting:
  stage: test
  script:
    - npm run formatting:check

build:
  stage: build
  script:
    - npm run build

electron-builder:
  stage: package
  script:
    - npm run package
  artifacts:
    paths:
      - "out/**"
      - "out/ManaLauncher **"
      - "out/ManaLauncher**.AppImage"
      - "out/ManaLauncher**.exe"