Run prettier

This commit is contained in:
ligi 2022-09-06 21:40:55 +02:00
parent b044d58336
commit de0859b0cb
No known key found for this signature in database
GPG Key ID: 8E81894010ABF23D

View File

@ -1,22 +1,24 @@
name: Check JavaScript for conformance with Prettier name: Run prettier
on: on:
push:
pull_request: pull_request:
jobs: jobs:
prettier: prettier:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Check out repo - name: Checkout
uses: actions/checkout@v2 uses: actions/checkout@v2
- uses: actions/cache@v2
name: Configure npm caching
with: with:
path: ~/.npm # Make sure the actual branch is checked out when running on pull requests
key: ${{ runner.os }}-npm-${{ hashFiles('**/workflows/prettier.yml') }} ref: ${{ github.head_ref }}
restore-keys: | # This is important to fetch the changes to the previous commit
${{ runner.os }}-npm- fetch-depth: 0
- name: Run prettier
run: |- - name: Prettify code
npx prettier --check '_data/*/*.json' uses: creyD/prettier_action@v4.2
with:
# This part is also where you can pass other options, for example:
prettier_options: --write _data/*/*.json
only_changed: True