Skip to content

Dynamic LDP containers #1650

Dynamic LDP containers

Dynamic LDP containers #1650

Workflow file for this run

name: Prettier formatting
on:
pull_request:
paths:
- '**.css'
- '**.js'
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
- uses: actions/setup-node@v2
with:
node-version: '12.20.0'
- name: Install prettier |
run: |
( cd ./src/frontend && yarn install )
( cd ./src/middleware && yarn install )
- name: Run prettier on frontend
run: ( cd ./src/frontend && yarn run prettier )
- name: Run prettier on middleware
run: ( cd ./src/middleware && yarn run prettier )
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Automatic prettier
branch: ${{ github.head_ref }}
push_options: --force
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}