-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a23ee33
commit 9ded330
Showing
1 changed file
with
16 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,22 +7,22 @@ on: | |
branches: [ master ] | ||
|
||
jobs: | ||
prettier: | ||
runs-on: ubuntu-latest | ||
# prettier: | ||
# runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
# Make sure the actual branch is checked out when running on pull requests | ||
ref: ${{ github.head_ref }} | ||
# steps: | ||
# - name: Checkout | ||
# uses: actions/checkout@v3 | ||
# with: | ||
# # Make sure the actual branch is checked out when running on pull requests | ||
# ref: ${{ github.head_ref }} | ||
|
||
- name: Install dependencies | ||
run: yarn | ||
# - name: Install dependencies | ||
# run: yarn | ||
|
||
- name: Prettify code | ||
uses: creyD/[email protected] | ||
with: | ||
# This part is also where you can pass other options, for example: | ||
prettier_options: --check '**/*.{ts,tsx,js,json,html,css,scss,md}' | ||
dry: true | ||
# - name: Prettify code | ||
# uses: creyD/[email protected] | ||
# with: | ||
# # This part is also where you can pass other options, for example: | ||
# prettier_options: --check '**/*.{ts,tsx,js,json,html,css,scss,md}' | ||
# dry: true |