mirror of
https://github.com/abhisheknaiidu/awesome-github-profile-readme.git
synced 2024-10-01 01:05:58 -04:00
20 lines
335 B
YAML
20 lines
335 B
YAML
name: Continuous Integration
|
|
|
|
# This action works with pull requests and pushes
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
prettier:
|
|
name: Run Prettier
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Prettify code
|
|
uses: creyD/prettier_action@v2.2 |