Skip to content

Update README.md

Update README.md #36

Workflow file for this run

name: Node.js CI
# This action works with pull requests and pushes
on:
workflow_call:
workflow_dispatch:
pull_request:
branches: [main]
push:
branches: [main]
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 }}
- name: Main
run: ls
- name: Prettify code
uses: creyD/prettier_action@v4.2
with:
commit_message: "Code Indented!"
prettier_options: --write **/*.{js,md}