Skip to content

Fix minor design switcher outline rendering #3881

Fix minor design switcher outline rendering

Fix minor design switcher outline rendering #3881

# Copyright 2023 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Adapted from https://github.com/takahirom/roborazzi-compare-on-github-comment-sample/blob/main/.github/workflows/StoreScreenshot.yml
name: RecordScreenshot
on:
push:
branches:
- main
- dependapool
- 'stable/**'
- 'feature/**'
pull_request:
permissions: {}
jobs:
record-current-screenshots:
runs-on: "macos-latest"
timeout-minutes: 20
permissions:
contents: read # for clone
actions: write # for upload-artifact
steps:
- name: Harden Runner
uses: step-security/harden-runner@c95a14d0e5bab51a9f56296a4eb0e416910cd350 # v2.10.3
with:
egress-policy: audit
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Set up Build
uses: ./.github/actions/setup-build
with:
setup-gradle: true
setup-protoc: true
- name: Record fresh screenshots
run: ./gradlew recordRoborazziDebug
# These screenshots are stored to use as a baseline for future runs of the
# roborazzi-compare-screenshot workflow
- uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
with:
name: screenshots
path: |
**/src/testDebug/roborazzi
retention-days: 30