Skip to content
This repository was archived by the owner on Sep 1, 2022. It is now read-only.

Commit cf7bbc7

Browse files
committed
fixing typos, removing gifs
1 parent 3221a1e commit cf7bbc7

File tree

2 files changed

+1
-17
lines changed

2 files changed

+1
-17
lines changed

responses/10_action-two.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Now that you have all the necessary tools installed locally, follow these steps
2525
`git add .`
2626
`git commit -m 'initial joke action'`
2727
10. Push you changes to your repository:
28-
`git push
28+
`git push`
2929

3030
---
3131

responses/dev-env.md

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -23,35 +23,19 @@ Now that you have all the necessary tools installed locally, follow these steps
2323
1. Open the **Terminal** (Mac and Linux) or **Command Prompt** (Windows) on your local machine
2424
2. Clone your Learning Lab repo to your local machine:
2525
`git clone {{repoUrl}}.git`
26-
27-
<details><summary>View GIF</summary><img src="https://media.giphy.com/media/YnvmISGo2MbXpn2bc5/giphy.gif" alt="git clone example" /></details>
28-
<!-- ![alt text](https://media.giphy.com/media/YnvmISGo2MbXpn2bc5/giphy.gif) -->
29-
3026
3. Navigate to the folder you just cloned:
3127
`cd writing-javascript-actions`
32-
<details><summary>View GIF</summary><img src="https://media.giphy.com/media/duA6JVCuXbt5gKqNLw/giphy.gif" alt="directory navigation" /></details>
33-
<!-- ![alt text](https://media.giphy.com/media/duA6JVCuXbt5gKqNLw/giphy.gif) -->
3428
4. Create a new branch named `hello-world`. This is the branch we will use to write our first Action. **Please do not capitalize letters unless I do, I run case-sensitive checks to make sure I can help you along the way!**
3529
`git checkout -b hello-world`
3630

37-
<details><summary>View GIF</summary><img src="https://media.giphy.com/media/hvdeWGkjoy4UdfwbfQ/giphy.gif" alt="git checkout example" /></details>
38-
3931
5. Create a new folder for our Actions files:
4032
`mkdir -p .github/actions/hello-world`
41-
<details><summary>View GIF</summary><img src="https://media.giphy.com/media/Wn03sc0QsywHHD1LeN/giphy.gif" alt="create folder for action example" /></details>
4233
6. Navigate to the `hello-world` folder you just created:
4334
`cd .github/actions/hello-world`
44-
45-
<details><summary>View GIF</summary><img src="https://media.giphy.com/media/ckCMgczjpbjNwkfJq4/giphy.gif" alt="navigate to folder for action example" /></details>
46-
4735
7. Initialize a new project:
4836
`npm init -y`
49-
50-
<details><summary>View GIF</summary><img src="https://media.giphy.com/media/mEW0fJYx4oUjdgYHDV/giphy.gif" alt="navigate to folder for action example" /></details>
51-
5237
8. Install the **core** dependency from the [GitHub ToolKit](https://github.com/actions/toolkit):
5338
`npm install --save @actions/core`
54-
<details><summary>View GIF</summary><img src="https://media.giphy.com/media/H3kGNqDI24lNOEKk5k/giphy.gif" alt="navigate to folder for action example" /></details>
5539
9. Commit those newly added files,we will remove the need to upload **node_modules** in a later step:
5640
`git add .`
5741
`git commit -m 'initial hello-world'`

0 commit comments

Comments
 (0)