Skip to content

reg-viz/reg-actions

Repository files navigation

A visual regression test tool for github actions :octocat:.


Warning

v1 is deprecated. Please use v2.

GitHub Actions Status

Table of Contents

What is reg-actions

This repository provides a GitHub Action for visual regression testing.
(See also related projects reg-suit and reg-cli).

This action uploads images and report as workflow artifact.
The report is commented to PR and workflow summary by downloading and comparing the artifacts from the branch where the pull request will be merged.

So, this action does not take screenshot, please generate images by your self.
If you use storybook, we recommend using storycap

PR Comment

comment

You can also see an example

Workflow Summary

summary

You can also see an example.

How to use

Minimal setup

Let's start with a minimal workflow setup.
Please add on: [push, pull_request] to make it work correctly.
The github-token is required to download and upload artifacts.

name: CI

on: [push, pull_request]

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: reg-viz/reg-actions@v2
        with:
          github-token: "${{ secrets.GITHUB_TOKEN }}"
          image-directory-path: "./images"

Action inputs

Input definitions are written in action.yml.

github-token (Required)

  • Type: String
  • Default: N/A

GitHub API access token. It is used to upload test report and add comment to pull request.

image-directory-path (Required)

  • Type: String
  • Default: N/A

Path to images directory.The images stored in this directory will be compared with the expected images from the last upload.

enable-antialias (Optional)

  • Type: Boolean
  • Default: false

Enable antialias. If omitted false.

matching-threshold (Optional)

  • Type: Number
  • Default: N/A

Matching threshold, ranges from 0 to 1. Smaller values make the comparison more sensitive. 0 by default. Specifically, you can set how much of a difference in the YIQ difference metric should be considered a different pixel. If there is a difference between pixels, it will be treated as "same pixel" if it is within this threshold.

threshold-rate (Optional)

  • Type: Number
  • Default: N/A

The rate threshold at which the image is considered changed. When the difference ratio of the image is larger than the set rate detects the change. Applied after matchingThreshold. 0 by default.

threshold-pixel (Optional)

  • Type: Number
  • Default: N/A

The pixel threshold at which the image is considered changed. When the difference pixel of the image is larger than the set pixel detects the change. This value takes precedence over thresholdRate. Applied after matchingThreshold. 0 by default.

target-hash (Optional)

  • Type: String
  • Default: N/A

The commit hash to be compared.
For example you can determine the target hash dynamically using a github script.
Please see test_with_target_hash.yml.

custom-report-page (Optional)

  • Type: String
  • Default: N/A

The custom report page link.

report-file-path (Optional)

  • Type: String
  • Default: N/A

Path of the generated report html file. This file can be deployed in other Actions steps, but is not included in the artifact. If omitted, no html report is generated.

artifact-name (Optional)

  • Type: String
  • Default: "reg"

The name of the artifact to be Uploaded. Default is "reg".

branch (Optional)

  • Type: String
  • Default: "reg_actions"

The branch name for uploading images. This action will upload the image to the specified branch and use its URL in the comments. Default is "reg_actions".

disable-branch (Optional)

  • Type: Boolean
  • Default: false

The option to disable push to a branch. When set to false, the branch option is ignored, and images will not be displayed in the comments.

comment-report-format (Optional)

  • Type: String
  • Default: "raw"

The option how to render changed file in comment. This action will change PR and workflow summary report format. Available options are raw and summarized. raw will render report comment with expanded results. summarized will render report comment using <details> tag to summarize by changed files.

Limitation

Troubleshooting

  • Error: HttpError: Resource not accessible by integration.

Please go to the Settings > Actions > General > Workflow permissions of the relevant repository and change the permission from Read repository contents permission to Read and write permissions.

Contribute

Thanks for your help improving the project! We are so happy to have you!

License

The MIT License (MIT)

Copyright (c) 2023 bokuweb

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

reg-viz