mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-11-28 20:28:52 +03:00
17 lines
292 B
YAML
17 lines
292 B
YAML
|
name: Prettier on pull requests
|
||
|
|
||
|
on:
|
||
|
pull_request:
|
||
|
workflow_dispatch:
|
||
|
|
||
|
jobs:
|
||
|
prettier:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v4
|
||
|
with:
|
||
|
ref: ${{ github.head_ref }}
|
||
|
- uses: creyD/prettier_action@v4.3
|
||
|
with:
|
||
|
dry: true
|