Skip to content

build(deps-dev): bump vite from 6.3.4 to 6.4.1 #418

build(deps-dev): bump vite from 6.3.4 to 6.4.1

build(deps-dev): bump vite from 6.3.4 to 6.4.1 #418

Workflow file for this run

# This workflow handles PR validation by running tests and build
name: PR Validation
on:
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [23.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run build
- run: npm test
- name: Check for changes
id: git-check
run: |
git diff --quiet README.md changes.svg || echo "has_changes=true" >> $GITHUB_OUTPUT
- name: Commit updated README and SVG
if: steps.git-check.outputs.has_changes == 'true'
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add README.md changes.svg
git commit -m "docs(README): update README.md and changes.svg [skip ci]"
- name: Push changes
if: steps.git-check.outputs.has_changes == 'true'
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.head_ref }}