diff --git a/.github/workflows/ci/linux.yml b/.github/workflows/ci/linux.yml deleted file mode 100644 index 837256f..0000000 --- a/.github/workflows/ci/linux.yml +++ /dev/null @@ -1,21 +0,0 @@ -name: Build Linux Client - -on: [push, pull_request] - -jobs: - build: - - runs-on: ubuntu-latest - - steps: - - name: Clone source code - uses: actions/checkout@v1 - - name: Use Node.js - uses: actions/setup-node@v1 - with: - node-version: 10.x - - name: Install dependencies and build - run: | - npm install - npm run build --if-present - npm run build-desktop-linux \ No newline at end of file diff --git a/.github/workflows/ci/mac.yml b/.github/workflows/ci/mac.yml deleted file mode 100644 index 83da9c2..0000000 --- a/.github/workflows/ci/mac.yml +++ /dev/null @@ -1,21 +0,0 @@ -name: Build macOS Client - -on: [push, pull_request] - -jobs: - build: - - runs-on: macos-latest - - steps: - - name: Clone source code - uses: actions/checkout@v1 - - name: Use Node.js - uses: actions/setup-node@v1 - with: - node-version: 10.x - - name: Install dependencies and build - run: | - npm install - npm run build --if-present - npm run build-desktop-darwin-nosign \ No newline at end of file diff --git a/.github/workflows/ci/standard.yml b/.github/workflows/ci/standard.yml deleted file mode 100644 index 9a21f54..0000000 --- a/.github/workflows/ci/standard.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: Node CI - -on: [push] - -jobs: - build: - - runs-on: ubuntu-latest - - strategy: - matrix: - node-version: [8.x, 10.x, 12.x] - - steps: - - name: Clone source code - uses: actions/checkout@v1 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 - with: - node-version: ${{ matrix.node-version }} - - name: Install dependencies and build - run: | - npm install - npm run build --if-present - env: - CI: true \ No newline at end of file diff --git a/.github/workflows/ci/win.yml b/.github/workflows/ci/win.yml deleted file mode 100644 index c884272..0000000 --- a/.github/workflows/ci/win.yml +++ /dev/null @@ -1,21 +0,0 @@ -name: Build Windows Client - -on: [push, pull_request] - -jobs: - build: - - runs-on: windows-latest - - steps: - - name: Clone source code - uses: actions/checkout@v1 - - name: Use Node.js - uses: actions/setup-node@v1 - with: - node-version: 10.x - - name: Install dependencies and build - run: | - npm install - npm run build --if-present - npm run build-desktop-win \ No newline at end of file