summaryrefslogblamecommitdiff
path: root/.gitlab-ci.yml
blob: 25fd7f222d92ffca386e1db164640a13c684a666 (plain) (tree)
1
2
3
4
5
6
7
8
9







                                    
        








                




                             














                                     
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"