Skip to content

chore(deps): update dependency eslint-plugin-prettier to v5 #217

chore(deps): update dependency eslint-plugin-prettier to v5

chore(deps): update dependency eslint-plugin-prettier to v5 #217

name: Renovate Helper
on:
pull_request:
paths:
- "package-lock.json"
- "package.json"
jobs:
npm:
runs-on: ubuntu-22.04
if: github.actor == 'renovate[bot]'
permissions:
contents: write
timeout-minutes: 5
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: peaceiris/workflows/[email protected]
- uses: peaceiris/workflows/[email protected]
with:
node-version-file: ".nvmrc"
- run: npm ci
- run: npm run build
- run: git status
- run: git diff --exit-code
- name: Commit and Push
if: failure()
env:
HEAD_REF: ${{ github.head_ref }}
run: |
git checkout -b "${HEAD_REF}" "origin/${HEAD_REF}"
git add .
git commit -m "chore: npm run build"
git push