Another Travis fix attempt

This commit is contained in:
Marquis Kurt 2019-05-12 15:57:28 -04:00
parent a7be3931f4
commit 8c00877bca
2 changed files with 6 additions and 5 deletions

View File

@ -10,30 +10,30 @@ os:
jobs:
include:
- stage: test
- stage: "Web builds"
name: "Web Production build"
script:
- npm install
- npm run build
- stage: test
- stage: "All destop builds"
name: "Desktop (all) build"
script:
- npm install
- npm run build-desktop
- stage: test
- stage: "Non-darwin builds"
name: "Windows build"
script:
- npm install
- npm run build
- npm run build-desktop-win
- stage: test
- stage: "Darwin builds"
name: "macOS (all) build"
if: os = osx
script:
- npm install
- npm run build
- npm run build-desktop-macos
- stage: test
- stage: "Non-darwin builds"
name: "Linux (all) build"
script:
- npm install

View File

@ -53,6 +53,7 @@
"build-desktop-darwin": "npm run create-mac-icon; build -m",
"build-desktop-linux": "build -l deb AppImage snap",
"build-desktop-linux-select": "build -l ",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {