Skip to content

Add build-dist CI flow to build and push the library to branch main-dist when code is pushed to main. #167

Add build-dist CI flow to build and push the library to branch main-dist when code is pushed to main.

Add build-dist CI flow to build and push the library to branch main-dist when code is pushed to main. #167

Workflow file for this run

name: Prettier
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
- name: Prettify code
uses: creyD/prettier_action@v3.3
with:
prettier_options: --write **/*.{js,md}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}