Skip to content

chore(deps-dev): update npm-run-all2 to v6.2.6 (#559) #55

chore(deps-dev): update npm-run-all2 to v6.2.6 (#559)

chore(deps-dev): update npm-run-all2 to v6.2.6 (#559) #55

Workflow file for this run

name: πŸ‘” Format
on:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: write
jobs:
format:
if: github.repository == 'eslint-community/eslint-plugin-promise'
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
- name: βŽ” Setup node
uses: actions/setup-node@v4
with:
node-version: lts/*
- name: πŸ“₯ Install deps
run: npm ci
- name: πŸ‘” Format
run: npm run format
- name: πŸ’ͺ Commit
run: |
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git add .
if [ -z "$(git status --porcelain)" ]; then
echo "πŸ’Ώ no formatting changed"
exit 0
fi
git commit -m "chore: format"
git push
echo "πŸ’Ώ pushed formatting changes https://github.com/$GITHUB_REPOSITORY/commit/$(git rev-parse HEAD)"