Welcome to mirror list, hosted at ThFree Co, Russian Federation.

autoprefixer.yml « workflows « .github - github.com/hossainemruz/toha.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3f941f2f5ff2bdb3392c80cd0969062e7a9c9efb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Autoprefixer
on:
  push:
    branches:
      - main
jobs:
  autoprefixer:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout to latest commit
        uses: actions/checkout@v3.1.0

      - name: Setup Node
        uses: actions/setup-node@v3
        with:
          node-version: "15.x"

      - name: Run autoprefixer
        run: |
          npm install postcss postcss-cli autoprefixer --save-dev
          npm run autoprefixer

      - name: Create Pull Request
        uses: peter-evans/create-pull-request@v4
        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