chore(deps): bump vite from 5.0.12 to 5.4.6 #207
Workflow file for this run
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 GitHub Action updates the DIRECTORY.md file (if needed) when doing a git push | |
name: Update Directory | |
on: | |
push: | |
branches-ignore: | |
"master" | |
jobs: | |
updateDirectory: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
cache: npm | |
- name: 📦 Install dependencies | |
run: npm ci | |
- name: 🗄️ Create Directory from JS files | |
run: node .github/workflows/UpdateDirectory.js | |
- name: Configure Github Action | |
run: | | |
git config --global user.name "$GITHUB_ACTOR" | |
git config --global user.email "[email protected]" | |
- name: 🤓 Commit & push new Directory (if needed) | |
run: | | |
if [[ `git status --porcelain` ]]; then | |
git commit -am "Updated Documentation in README.md" | |
git push | |
else | |
echo "NO CHANGES DETECTED" | |
fi |