build(deps): bump @mui/x-data-grid from 7.21.0 to 7.22.0 #2581
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
name: Update Vitest Snapshots | |
on: | |
issue_comment: | |
types: [created] | |
jobs: | |
update-snapshots: | |
runs-on: ubuntu-latest | |
if: startsWith(github.event.comment.body, '/update-snapshot') | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
ref: ${{ github.event.issue.head_ref }} | |
repository: ${{ github.event.issue.repository.full_name }} | |
fetch-depth: 0 | |
- name: Set up Node.js | |
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 | |
with: | |
node-version: 20 | |
cache: npm | |
- name: Install dependencies | |
run: npm install | |
- name: Update Vitest Snapshots | |
run: npm test -- -u | |
- name: Commit and push changes | |
run: | | |
git config --global user.name "GitHub Action" | |
git config --global user.email "[email protected]" | |
git add . | |
if git diff-index --quiet HEAD; then | |
echo "NO_CHANGES_DETECTED=1" >> "${GITHUB_ENV}" | |
else | |
git commit -m "Update Vitest Snapshots" | |
git push | |
fi | |
- name: Add comment | |
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4.0.0 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
issue-number: ${{ github.event.issue.number }} | |
body: | | |
${{ env.NO_CHANGES_DETECTED == '1' && 'No snapshot changes detected.' || 'Snapshots updated and changes pushed to the PR.' }} |