Skip to content

Commit

Permalink
chore: Run ubuntu tests seprately from windows/macos
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya committed Nov 21, 2020
1 parent 679d2e9 commit 0db0ae3
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,21 @@ jobs:
channel: ${{ matrix.atom_channel }}
- name: Versions
run: apm -v

- name: Install APM dependencies
run: |
apm install
- name: Run tests
- name: Run Ubuntu tests
if: ${{ contains(matrix.os, 'ubuntu') }}
run: npm run test


# One or two of the tests are flaky on Windows/MacOs
- name: Run Windows and MacOS tests
if: ${{ !contains(matrix.os, 'ubuntu') }}
continue-on-error: true
run: npm run test

Lint:
if: "!contains(github.event.head_commit.message, '[skip ci]')"
runs-on: ubuntu-latest
Expand Down

0 comments on commit 0db0ae3

Please sign in to comment.