Skip to content

feat: begin adding line number support but stopped because of strange… #87

feat: begin adding line number support but stopped because of strange…

feat: begin adding line number support but stopped because of strange… #87

Workflow file for this run

name: Format
on:
push:
branches:
- '**' # Any branch
jobs:
format:
runs-on: ubuntu-latest
# Add permissions to allow commits
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v3
with:
# Make sure the actual branch is checked out when running on pull requests
ref: ${{ github.head_ref }}
# This is important to fetch the changes to the previous commit
fetch-depth: 0
- name: Prettier Action
uses: creyD/[email protected]
with:
prettier_options: '--config ./.prettierrc --ignore-path .gitignore -w "packages/**/*.{js,ts,json,css,tsx,jsx,md}" "playgrounds/**/*.{js,ts,json,css,tsx,jsx,md}"'
commit_message: "style: auto-format with action"