diff --git a/.github/workflows/ci-linux.yml b/.github/workflows/ci-linux.yml index 837256f..dbf9366 100644 --- a/.github/workflows/ci-linux.yml +++ b/.github/workflows/ci-linux.yml @@ -3,10 +3,8 @@ name: Build Linux Client on: [push, pull_request] jobs: - build: - + build_linux: runs-on: ubuntu-latest - steps: - name: Clone source code uses: actions/checkout@v1 diff --git a/.github/workflows/ci-mac.yml b/.github/workflows/ci-mac.yml index b6a1846..401b77d 100644 --- a/.github/workflows/ci-mac.yml +++ b/.github/workflows/ci-mac.yml @@ -3,10 +3,8 @@ name: Build macOS Client on: [push, pull_request] jobs: - build: - + build_darwin: runs-on: macos-latest - steps: - name: Clone source code uses: actions/checkout@v1 diff --git a/.github/workflows/ci-standard.yml b/.github/workflows/ci-standard.yml index 9a21f54..4f4695b 100644 --- a/.github/workflows/ci-standard.yml +++ b/.github/workflows/ci-standard.yml @@ -4,13 +4,10 @@ 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 diff --git a/.github/workflows/ci-win.yml b/.github/workflows/ci-win.yml index c884272..0e82160 100644 --- a/.github/workflows/ci-win.yml +++ b/.github/workflows/ci-win.yml @@ -3,10 +3,8 @@ name: Build Windows Client on: [push, pull_request] jobs: - build: - + build_win: runs-on: windows-latest - steps: - name: Clone source code uses: actions/checkout@v1 diff --git a/.github/workflows/review-style.yml b/.github/workflows/review-style.yml index 270ef82..342e891 100644 --- a/.github/workflows/review-style.yml +++ b/.github/workflows/review-style.yml @@ -3,10 +3,8 @@ name: Prettier on: [pull_request] jobs: - build: - + prettier: runs-on: ubuntu-latest - steps: - name: Clone source code uses: actions/checkout@v1