Bumps [actions/checkout](https://github.com/actions/checkout) from v2.3.3 to v2.3.4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2.3.3...5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
35 lines
1.1 KiB
YAML
35 lines
1.1 KiB
YAML
name: Autoprefixer
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
jobs:
|
|
autoprefixer:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout to latest commit
|
|
uses: actions/checkout@v2.3.4
|
|
|
|
- name: Setup Node
|
|
uses: actions/setup-node@v2.1.2
|
|
with:
|
|
node-version: "15.x"
|
|
|
|
- name: Run autoprefixer
|
|
run: |
|
|
npm install postcss-cli autoprefixer --save-dev
|
|
npm run autoprefixer
|
|
|
|
- name: Create Pull Request
|
|
uses: peter-evans/create-pull-request@v3.4.1
|
|
with:
|
|
branch: autoprefixer
|
|
branch-suffix: timestamp
|
|
commit-message: add vendor specific css prefixes
|
|
title: "Update and run autoprefixer"
|
|
body: |
|
|
This PR runs [postcss/autoprefixer](https://github.com/postcss/autoprefixer) to update vendor specific CSS prefixes.
|
|
|
|
>This PR has been created automatically by Github Action [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request).
|
|
labels: "enhancement,automerge"
|
|
reviewers: hossainemruz
|