⬆️ Update dependency eslint-plugin-jest to v28.9.0 (#456) #363
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 dist folder' | |
on: | |
push: | |
branches-ignore: renovate/* | |
jobs: | |
dist-changed: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'npm' | |
- name: Install dependencies | |
run: | | |
npm install | |
- name: Package (update dist folder) | |
run: | | |
npm run update-dist | |
- name: Did dist folder changed? | |
run: | | |
EXIT_CODE=0 | |
git update-index --refresh dist/* && git diff-index --quiet HEAD dist || EXIT_CODE=$? | |
# Set environment variable | |
echo "EXIT_CODE_DIST_CHANGED=$EXIT_CODE" >> $GITHUB_ENV | |
- name: Commit dist folder | |
if: ${{ env.EXIT_CODE_DIST_CHANGED == 1 }} | |
run: | | |
git config --global user.name 'Octocat' | |
git config --global user.email '[email protected]' | |
git add dist/ | |
git commit -m "🧹 Update dist folder" | |
git push |