20 lines
503 B
YAML
20 lines
503 B
YAML
name: CodeCleanup
|
|
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
cleanup_tasks:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Cloning the repository
|
|
uses: actions/checkout@v2
|
|
with:
|
|
ref: ${{ github.head_ref }}
|
|
- name: Prettify the JS Code
|
|
uses: creyD/prettier_action@master
|
|
with:
|
|
prettier_options: "--write **/*.js"
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|