Skip to content

Updated 11_challenge.js with new code for compound variables calculat… #84

Updated 11_challenge.js with new code for compound variables calculat…

Updated 11_challenge.js with new code for compound variables calculat… #84

Workflow file for this run

name: Update Table of Contents
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
update_table_of_contents:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Generate Table of Contents
run: |
node generate_toc.js
git config --local user.email "88645086+infinotiver@users.noreply.github.com"
git config --local user.name "infinotiver"
git add README.md
git commit -m "(Automated) Update table of contents in README"
git push