chore: Bump eslint from 8.50.0 to 8.51.0 #404
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: Package | |
# When a pull request is opened/reopened or when the head branch of the pull request is updated. | |
on: | |
pull_request: | |
jobs: | |
build: | |
name: Package distribution file | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Init a git repo | |
uses: actions/checkout@v2 | |
- name: Checkout PR | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: gh pr checkout ${{ github.event.pull_request.number }} | |
- name: Package | |
run: | | |
npm ci | |
npm test | |
npm run package | |
- name: Commit to PR | |
if: github.actor == 'dependabot[bot]' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
git config --global user.name "GitHub Actions" | |
git add dist/ | |
git commit -m "chore: Update dist" || echo "No changes to commit" | |
git push | |
- name: Check git diff | |
if: github.actor != 'dependabot[bot]' | |
run: | | |
git diff --exit-code dist/index.js |