Skip to content

fixed README format

fixed README format #4

Workflow file for this run

name: Deploy Plugin
on:
push:
branches:
- main
workflow_dispatch:
jobs:
Deploy-Plugin:
name: Deploy-Plugin
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install Dependencies
run: npm install
- name: Build
run: npm run build
- name: Upload the artifact
uses: actions/upload-artifact@v4
with:
name: wpcom
path: |
.
!.git*
!src/
!node_modules/
!package.json
!package-lock.json
!webpack.config.js
!README.md