Skip to content

chore(deps): update dependency eslint-config-prettier to v9 (#1303) #130

chore(deps): update dependency eslint-config-prettier to v9 (#1303)

chore(deps): update dependency eslint-config-prettier to v9 (#1303) #130

Workflow file for this run

---
name: Prettier
on:
push:
branches: [main]
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
permissions:
contents: read
jobs:
run:
name: Can the code be prettier? 🤔
runs-on: ubuntu-latest
permissions:
contents: write # for gr2m/create-or-update-pull-request-action to push local changes
pull-requests: write # for gr2m/create-or-update-pull-request-action to create a PR
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: npm
node-version: lts/*
- run: npm ci --ignore-scripts --only-dev
- uses: actions/cache@v3
with:
path: node_modules/.cache/prettier/.prettier-cache
key: prettier-${{ hashFiles('package-lock.json') }}-${{ hashFiles('.gitignore') }}
- run: npx prettier --ignore-path .gitignore --cache --write .
- run: git restore .github/workflows data
- uses: peter-evans/create-pull-request@153407881ec5c347639a548ade7d8ad1d6740e38 # v5
with:
author: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
body: I ran `npm run prettier` 🧑‍💻
branch: actions/prettier
commit-message: 'chore(prettier): 🤖 ✨'
labels: 🤖 bot
title: 'chore(prettier): 🤖 ✨'
token: ${{ secrets.GH_TOKEN }}