Skip to content

Copy v0.1.3 api docs to latest #433

Copy v0.1.3 api docs to latest

Copy v0.1.3 api docs to latest #433

Workflow file for this run

name: Format code
# This action works with pull requests and pushes
on:
push:
branches:
- master
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
# Make sure the actual branch is checked out when running on pull requests
ref: ${{ github.head_ref }}
fetch-depth: 0
- name: Prettify code
uses: creyD/[email protected]
with:
# This part is also where you can pass other options, for example:
prettier_options: --write **/*.{html,md,css,scss}
only_changed: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}