Skip to content

build(deps): lock file maintenance (#972) #434

build(deps): lock file maintenance (#972)

build(deps): lock file maintenance (#972) #434

Workflow file for this run

"on":
push:
branches:
- main
name: Lint repository contents
jobs:
lint_repo:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
token: ${{ secrets.OCTOKITBOT_PAT }}
- uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
- run: npm ci
- run: echo "./node_modules/.bin" >> $GITHUB_PATH
- run: ./bin/format-with-prettier.mts
- run: git diff-index --quiet HEAD
- if: failure()
run: |
git config user.email "[email protected]"
git config user.name "Octokit Bot"
git add .
git commit -m "style: lint JSON files" && git push || true