Skip to content

Bump postcss from 8.5.6 to 8.5.12 in the npm_and_yarn group across 1 … #547

Bump postcss from 8.5.6 to 8.5.12 in the npm_and_yarn group across 1 …

Bump postcss from 8.5.6 to 8.5.12 in the npm_and_yarn group across 1 … #547

Workflow file for this run

name: Format
on:
push:
pull_request_target:
workflow_dispatch:
permissions: write-all
jobs:
format:
name: Format
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
token: ${{secrets.TOKEN || secrets.GITHUB_TOKEN}}
ref: ${{github.head_ref}}
repository: ${{github.event.pull_request.head.repo.full_name}}
- name: Setup Node.JS
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
- name: Install
run: npm install
- name: Format
run: npm run format
- name: Assert clean
if: startsWith(github.ref_name, 'dependabot/') == true
run: if [[ `git status --porcelain` ]]; then exit 1; fi
- name: Commit
uses: stefanzweifel/git-auto-commit-action@04702edda442b2e678b25b537cec683a1493fcb9 # v7.1.0
with:
commit_message: Format