Skip to content

Commit

Permalink
Format and deploy to gh-pages (#3161)
Browse files Browse the repository at this point in the history
  • Loading branch information
bgoonz authored Sep 7, 2023
2 parents 0f41113 + 95b70c2 commit 527166f
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/deploy-markdown-to-gh-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Deploy Markdown to GitHub Pages

on:
push:
branches:
- master # Replace with your default branch if not 'main'

jobs:
deploy:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '14' # You can specify your desired Node.js version

- name: Install markdown-to-html converter
run: npm install -g markdown-serve

- name: Convert Markdown to HTML
run: markdown-serve -i ./ -o ./html_output

- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./html_output
25 changes: 25 additions & 0 deletions .github/workflows/prettier.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Prettier Code Formatter

on:
push:
branches:
- master # Replace with your default branch if not 'main'

jobs:
prettier:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: "14" # You can specify your desired Node.js version

- name: Install Prettier
run: npm install --global prettier

- name: Run Prettier
run: prettier --write '**/*.{js,jsx,ts,tsx,json,html,css}' # Add or remove file extensions as needed

0 comments on commit 527166f

Please sign in to comment.