Skip to content

chore(deps): bump fast-xml-parser from 5.3.4 to 5.4.1 #218

chore(deps): bump fast-xml-parser from 5.3.4 to 5.4.1

chore(deps): bump fast-xml-parser from 5.3.4 to 5.4.1 #218

Workflow file for this run

name: Prettier
on:
push:
pull_request:
workflow_dispatch:
concurrency:
group: prettier-${{ github.ref }}
cancel-in-progress: false
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- name: Harden the runner (Audit all outbound calls)
uses: step-security/harden-runner@e3f713f2d8f53843e71c69a996d56f51aa9adfb9 # v2.14.1
with:
egress-policy: audit
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Set up Node.js
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
with:
node-version: 20
- name: Cache node modules
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
with:
path: ./node_modules
key: ${{ runner.os }}-.-node-modules-${{ hashFiles('./package-lock.json') }}
restore-keys: |
${{ runner.os }}-.-node-modules-
- name: Install Prettier
run: npm install --no-save prettier
- name: Prettify code
uses: creyD/prettier_action@8c18391fdc98ed0d884c6345f03975edac71b8f0 # v4.6
with:
prettier_options: --check **/*.{js,md,css,html}
continue-on-error: true