chore(deps): update ubuntu docker tag to v22 (#5408) #152
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow updates the Percy baseline on every push to main. | |
# This allows pull requests to be compared against baseline test results. | |
name: Update Percy Baseline | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
snapshot: | |
name: Take Percy snapshots | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout SCM | |
uses: actions/checkout@v4 | |
- uses: ./.github/actions/percy-snapshot | |
with: | |
branch_name: main | |
commitsh: ${{ github.sha }} | |
percy_token_write: ${{ secrets.PERCY_TOKEN_WRITE }} |