This repository was archived by the owner on Dec 15, 2022. It is now read-only.
- Notifications
You must be signed in to change notification settings - Fork406
use action-setup-atom#2459
Merged
Uh oh!
There was an error while loading.Please reload this page.
Merged
Changes fromall commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
161 changes: 43 additions & 118 deletions.github/workflows/ci.yml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,172 +1,97 @@ | ||
name: ci | ||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- master | ||
jobs: | ||
tests: | ||
name: tests | ||
strategy: | ||
matrix: | ||
os: [ubuntu-18.04, macos-10.14, windows-latest] | ||
channel: [beta, nightly] | ||
fail-fast: false | ||
runs-on: ${{ matrix.os }} | ||
env: | ||
UziTech marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
ATOM_GITHUB_BABEL_ENV: coverage | ||
MOCHA_TIMEOUT: 60000 | ||
UNTIL_TIMEOUT: 30000 | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: install Atom | ||
uses: UziTech/action-setup-atom@v1 | ||
with: | ||
channel: ${{ matrix.channel }} | ||
- name: install windows build tools | ||
if: contains(matrix.os, 'windows') | ||
run: | | ||
choco install visualcpp-build-tools --version=14.0.25420.1 --ignore-dependencies -y --params "'/IncludeRequired'" | ||
echo "VCTargetsPath='C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\v140'" >> $GITHUB_ENV | ||
- name: install dependencies | ||
run: apm ci | ||
- name: configure git | ||
shell: bash | ||
run: | | ||
git config --global user.name Hubot | ||
git config --global user.email hubot@github.com | ||
- name: Run the tests | ||
if: ${{ !contains(matrix.os, 'windows') }} | ||
run: atom --test test | ||
- name: Run the tests on Windows | ||
if: ${{ contains(matrix.os, 'windows') }} | ||
continue-on-error: true # due to https://github.com/atom/github/pull/2459#issuecomment-624725972 | ||
run: atom --test test | ||
- name: report code coverage | ||
shell: bash | ||
env: | ||
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | ||
SYSTEM_PULLREQUEST_PULLREQUESTNUMBER: ${{ github.event.number }} | ||
SYSTEM_PULLREQUEST_SOURCEBRANCH: ${{ github.head_ref }} | ||
BUILD_SOURCEBRANCH: ${{ github.event.ref }} | ||
OS_NAME: ${{ matrix.os }} | ||
run: | | ||
npm run report:coverage | ||
COVERAGE_NAME=$([[ "${OS_NAME}" == macos* ]] && echo "macOS" || echo "Linux") | ||
bash <(curl -s https://codecov.io/bash) \ | ||
-n "${COVERAGE_NAME}" \ | ||
-P "${SYSTEM_PULLREQUEST_PULLREQUESTNUMBER:-}" \ | ||
-B "${SYSTEM_PULLREQUEST_SOURCEBRANCH:-${BUILD_SOURCEBRANCH}}" | ||
if: | | ||
!contains(matrix.os, 'windows') && | ||
(success() || failure()) | ||
lint: | ||
name: lint | ||
runs-on: ubuntu-18.04 | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: install Atom | ||
uses: UziTech/action-setup-atom@v1 | ||
with: | ||
channel: nightly | ||
- name: install dependencies | ||
run: apm ci | ||
- name: lint | ||
run: npm run lint | ||
snapshot-tests: | ||
name: snapshot tests | ||
runs-on: ubuntu-18.04 | ||
env: | ||
ATOM_GITHUB_BABEL_ENV: coverage | ||
ATOM_GITHUB_TEST_SUITE: snapshot | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: install Atom | ||
uses: UziTech/action-setup-atom@v1 | ||
with: | ||
channel: nightly | ||
- name: install dependencies | ||
run: apm ci | ||
- name: run snapshot tests | ||
run: atom --test test/ |
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.