Archived
1
0
This repository has been archived on 2026-02-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
urban_website/.github/workflows/prettier.yml
2020-01-16 17:16:51 +01:00

20 lines
408 B
YAML

name: Prettier for JS Code
on: [push, pull_request]
jobs:
cleanup_tasks:
runs-on: ubuntu-latest
steps:
- name: Cloning the repository
uses: actions/checkout@master
with:
fetch-depth: 1
- name: Prettify the JS Code
uses: creyD/prettier_action@master
with:
branch: ${{ github.head_ref }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}