😎 A curated list of awesome Github Profile READMEs 📝
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
442 B

  1. name: Continuous Integration
  2. # This action works with pull requests and pushes
  3. on:
  4. pull_request:
  5. push:
  6. branches:
  7. - master
  8. jobs:
  9. prettier:
  10. runs-on: ubuntu-latest
  11. steps:
  12. - name: Checkout
  13. uses: actions/checkout@v2
  14. with:
  15. # Make sure the actual branch is checked out when running on pull requests
  16. ref: ${{ github.head_ref }}
  17. - name: Prettify code
  18. uses: creyD/prettier_action@v2.2