Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: move CI builds from travis-ci.org to GitHub actions #268

Merged
merged 6 commits into from
Jul 27, 2021

Commits on Jul 5, 2021

  1. chore: move CI builds from travis-ci.org to GitHub actions

    The CI builds cover the following use cases:
     - run a full set of automated code checks for each PR (see `unit-tests.yml` and `visual-tests.yml` in `.github/workflows/`)
       - when a new PR is open (for any branch having these workflow .yml files)
       - when an open PR gets a new commit (including a force push)
     - do not run automated checks if the commit title includes `skip ci`
       The automated checks are skipped only for that one commit which has `skip ci`. For consequent commits that do not have `skip ci` the checks are executed normally.
    
    The full set of automated tests includes both unit and visual tests:
     - Unit tests are executed with the Polymer 2 source code, and also with the Polymer 3 source code after running the P2-to-P3 conversion script.
       - The unit tests with the Polymer 3 source code are executed in a set of different browsers / platforms (via SauceLabs).
       - The unit tests with the Polymer 2 source code are executed in a few browsers running headlessly in the CI agent.
     - Visual tests are executed with the Polymer 2 source code in Chrome and Firefox (via SauceLabs).
    
    Related to: https://github.com/vaadin/components-team-tasks/issues/586
    Viktor Lukashov committed Jul 5, 2021
    Configuration menu
    Copy the full SHA
    752b74a View commit details
    Browse the repository at this point in the history

Commits on Jul 6, 2021

  1. remove unintended changes

    Viktor Lukashov committed Jul 6, 2021
    Configuration menu
    Copy the full SHA
    25cdd89 View commit details
    Browse the repository at this point in the history

Commits on Jul 27, 2021

  1. Configuration menu
    Copy the full SHA
    c32f797 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5b8bc48 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8217841 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    57e3aab View commit details
    Browse the repository at this point in the history