Skip to content

Commit

Permalink
Fixed typo in front matter condenser and syned master record
Browse files Browse the repository at this point in the history
  • Loading branch information
jburns24 committed May 19, 2023
1 parent 8df59c4 commit 3174a63
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-front-matter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '18' # You can adjust this to your project's Node.js version
node-version: '18'

- name: Install dependencies
run: npm ci
Expand Down
2 changes: 1 addition & 1 deletion .husky/front-matter-condenser.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ async function main() {
const args = process.argv.slice(2);
let update = false;
if (args[0] === 'update') {
update == true;
update = true;
}

// Using _sidebar.md as the list of exercises that we cover in the bootcamp
Expand Down
24 changes: 18 additions & 6 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,31 @@ docs/1-introduction/1.3.1-unix.md:
docs/1-introduction/1.3.2-vim.md:
category: Fundamentals
estReadingMinutes: 15
technologies:
- Vim
exercises:
- name: hello vim
description: create a file in Vim
estMinutes: 5
technologies:
- Vim
docs/1-introduction/1.3.3-installations.md:
category: Fundamentals
estReadingMinutes: 10
docs/1-introduction/1.3.4-passwords-and-keys.md:
category: Fundamentals
estReadingMinutes: 25
technologies:
- ssh
estReadingMinutes: 10
exercises:
- name: hello ssh
description: create ssh keypair and ssh to a host
estMinutes: 15
technologies:
- ssh
docs/1-introduction/1.3.5-networking.md:
category: Fundamentals
estReadingMinutes: 25
estReadingMinutes: 10
exercises:
- name: hello network
description: explore the network of your local computer
estMinutes: 15
docs/1-introduction/1.4-external-resources.md:
category: Fundamentals
estReadingMinutes: 50
Expand Down

0 comments on commit 3174a63

Please sign in to comment.