Skip to content

Update README.md

Update README.md #21

Workflow file for this run

name: Format (prettier)
on:
push:
branches:
- 'master'
pull_request:
paths:
- '**.css'
- '**.js'
- '**.vue'
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
- name: Install
run: yarn install
env:
CI: true
- name: Run prettier
run: yarn run prettier --write .
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Apply prettier changes