Skip to content

Update notion.so.css - fixes #9

Update notion.so.css - fixes

Update notion.so.css - fixes #9

Workflow file for this run

name: Format Repository
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
format:
name: Format code
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
ref: ${{ github.head_ref }}
- name: Run Prettier
uses: creyD/[email protected]
with:
prettier_options: ${{ github.event_name == 'pull_request' && '--check .' || '--write .' }}
commit_message: "gh-actions: format code"
github_token: ${{ secrets.GITHUB_TOKEN }}