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 with:
name: Configure npm caching # Make sure the actual branch is checked out when running on pull requests
with: ref: ${{ github.head_ref }}
path: ~/.npm # This is important to fetch the changes to the previous commit
key: ${{ runner.os }}-npm-${{ hashFiles('**/workflows/prettier.yml') }} fetch-depth: 0
restore-keys: |
${{ runner.os }}-npm- - name: Prettify code
- name: Run prettier uses: creyD/prettier_action@v4.2
run: |- with:
npx prettier --check '_data/*/*.json' # This part is also where you can pass other options, for example:
prettier_options: --write _data/*/*.json
only_changed: True