build(deps-dev): bump eslint-plugin-jest from 28.8.3 to 28.9.0 #36
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
name: 'npm run prepare' | |
# Main use case: repackage when Dependabot updates a dependency | |
on: | |
push: | |
branches: | |
- 'dependabot/npm_and_yarn/**' | |
workflow_dispatch: | |
inputs: | |
branch: | |
description: 'Process this branch' | |
required: false | |
type: string | |
jobs: | |
npm-run-prepare-and-push: # make sure build/ci work properly | |
runs-on: ubuntu-latest | |
if: github.event_name == 'workflow_dispatch' || github.event.repository.owner.login == 'git-for-windows' | |
environment: git-for-windows-ci-push | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
repository: ${{ github.event.repository.full_name }} | |
ref: ${{ inputs.branch }}${{ github.event.ref }} | |
token: ${{ secrets.GIT_FOR_WINDOWS_CI_PUSH }} | |
- run: npm ci | |
- run: npm run prepare | |
- run: git diff-files | |
- run: npm run lint | |
- run: npm run test | |
- name: check if commit & push is needed | |
id: check | |
run: | | |
git add -u -- dist/ && | |
git diff-index --cached --exit-code HEAD -- || | |
echo "::set-output name=need-to-commit::yes" | |
- name: commit & push | |
if: steps.check.outputs.need-to-commit == 'yes' | |
run: | | |
git config user.name "${{github.actor}}" && | |
git config user.email "${{github.actor}}@users.noreply.github.com" && | |
git commit -m 'npm run prepare' -- dist/ && | |
git update-index --refresh && | |
git diff-files --exit-code && | |
git diff-index --cached --exit-code HEAD -- && | |
git push |