forked from GSA/uswds-sf-lightning-community
-
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.
GSA#99 initial release of prettier.yml workflow
- Loading branch information
1 parent
ca8bf9c
commit fe281d0
Showing
1 changed file
with
23 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: | ||
Prettier Action | ||
# You may pin to the exact commit or the version. | ||
# uses: creyD/prettier_action@0b655e298cc5c8477c9df9e60dfb6cd5d79f3055 | ||
# This action works with pull requests and pushes | ||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- develop | ||
jobs: | ||
prettier: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
# Make sure the actual branch is checked out when running on pull requests | ||
ref: ${{ github.head_ref }} | ||
- name: Prettify code | ||
uses: creyD/[email protected] | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} |