🧐 Applitools Eyes GitHub Action
Instantly add AI-powered visual regression testing to your site with Applitools Eyes and GitHub Actions.
Not officially supported by Applitools
Getting Started
Include the package as a step directly in an Action Workflow:
steps:
- uses: colbyfayock/applitools-eyes-action@main
with:
APPLITOOLS_API_KEY: ${{secrets.APPLITOOLS_API_KEY}}
baseUrl: https://demo.applitools.com/
The action requires 2 parameters to work:
-
APPLITOOLS_API_KEY
: your Applitools API Key (recommend to be stored in a GitHub secret) -
baseUrl
: the URL of the website or web app that you want to test
What's Inside
This Action relies on 3 core pieces to provide visual testing coverage to a website or web app:
Cypress is used as the test runner, providing the ability to spin up an instance of Chrome (or other configured browser) to run visual regression testing.
Sitemap Generator is used to crawl the website (baseUrl
), providing a sitemap of pages to…