2eb2a370ff
* upgraded to Node16 * Enforce Prettier * code fix * jest version change and prettify code Co-authored-by: Vidya Reddy <vidyareddy@microsoft.com>
18 lines
357 B
YAML
18 lines
357 B
YAML
name: 'Run prettify'
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
prettier:
|
|
name: Prettier Check
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Repository
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Enforce Prettier
|
|
uses: actionsx/prettier@v2
|
|
with:
|
|
args: --check .
|