Skip to content

Commit faf6602

Browse files
authored
Shape up prework (learn-co-curriculum#4)
* update readme for new sequencing * update gh workflow to remove prework flag
1 parent 88602b5 commit faf6602

File tree

2 files changed

+3
-20
lines changed

2 files changed

+3
-20
lines changed

.github/workflows/canvas-sync-html-prework.yml renamed to .github/workflows/canvas-sync-html.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Sync with Canvas Pre-Work that Contains HTML
1+
name: Sync with Canvas HTML
22

33
on:
44
push:
@@ -25,7 +25,7 @@ jobs:
2525

2626
# Secret stored in learn-co-curriculum Settings/Secrets
2727
- name: Sync from .canvas file
28-
run: github-to-canvas -a -lr --forkable --prework --contains-html
28+
run: github-to-canvas -a -lr --forkable --contains-html
2929
env:
3030
CANVAS_API_KEY: ${{ secrets.CANVAS_API_KEY }}
3131
CANVAS_API_PATH: ${{ secrets.CANVAS_API_PATH }}

README.md

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,7 @@ This is a code-along, so follow along with the instructions in each section.
5050
There are tests to make sure you're coding your solutions correctly. If you
5151
haven't already, fork and clone this lab into your local environment. Navigate
5252
into its directory in the terminal, then run `code .` to open the files in
53-
Visual Studio Code. Finally, run `npm install` to install the lab's
54-
dependencies.
53+
Visual Studio Code.
5554

5655
## The `for` loop
5756

@@ -367,22 +366,6 @@ counts down to zero using `console.log()`. Note that this means that running
367366
0
368367
```
369368

370-
## Saving Your Work Remotely
371-
372-
Currently, the work you've done on this assignment is only on your local
373-
machine. To preserve your solution on your GitHub fork, you will need to stage the
374-
changes you've made, commit them, and push the commit up to GitHub. Use
375-
the following commands to do this:
376-
377-
```console
378-
$ git add .
379-
$ git commit -m "Completed assignment"
380-
$ git push
381-
```
382-
383-
If you visit your fork on GitHub, you should now see that _you've_ made the most
384-
recent commit, and your code will be present in the files.
385-
386369
## Conclusion
387370

388371
After some time programming in JavaScript, writing a `for` loop will come as

0 commit comments

Comments
 (0)