Skip to content

Commit

Permalink
Add Github Action for the table of contents
Browse files Browse the repository at this point in the history
  • Loading branch information
arcataroger authored Nov 20, 2023
1 parent 8324026 commit 1697d26
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/regenerate-toc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Regenerate Table of Contents

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x, 20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm i -g doctoc # Install DocToc https://www.npmjs.com/package/doctoc
- run: doctoc README.md # Process the file and regenerate its ToC

0 comments on commit 1697d26

Please sign in to comment.