mirror of
https://github.com/Instadapp/chains.git
synced 2024-07-29 22:37:19 +00:00
Run prettier
This commit is contained in:
parent
b044d58336
commit
de0859b0cb
26
.github/workflows/prettier.yml
vendored
26
.github/workflows/prettier.yml
vendored
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue
Block a user