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 #71

Merged
merged 4 commits into from
Jul 6, 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 the `Full QA` workflow in `.github/workflows/full-qa.yml`)
       - when a new PR is open (for any target branch)
       - 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
    ed8b28e View commit details
    Browse the repository at this point in the history
  2. split unit and visual tests into separate workflows

    Viktor Lukashov committed Jul 5, 2021
    Configuration menu
    Copy the full SHA
    d25b79e View commit details
    Browse the repository at this point in the history
  3. remove unintended changes

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

Commits on Jul 6, 2021

  1. update reference screenshots

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