autoprefixer.yml 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  1. name: Autoprefixer
  2. on:
  3. push:
  4. branches:
  5. - master
  6. jobs:
  7. createPullRequest:
  8. runs-on: ubuntu-latest
  9. steps:
  10. - name: Checkout to latest commit
  11. uses: actions/checkout@v2
  12. - name: Setup Node
  13. uses: actions/setup-node@v1
  14. with:
  15. node-version: "12.x"
  16. - name: Run autoprefixer
  17. run: |
  18. npm install postcss-cli autoprefixer --save-dev
  19. npm run autoprefixer
  20. - name: Create Pull Request
  21. uses: peter-evans/create-pull-request@v3
  22. with:
  23. branch: autoprefixer
  24. branch-suffix: timestamp
  25. title: "Add vendor specific CSS prefixes"
  26. body: |
  27. This PR adds vendor specific CSS prefixes using [postcss/autoprefixer](https://github.com/postcss/autoprefixer).
  28. >This PR has been created automatically by Github Action [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request).
  29. labels: enhancements
  30. reviewers: hossainemruz