Skip to content

Commit 5f4ef9a

Browse files
authored
Merge pull request #18905 from Jontes-Tech/patch-2
Fixing non-working codesnippet.
2 parents b7f0f7f + e5b6cea commit 5f4ef9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/packages/quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ In this guide, you'll create a {% data variables.product.prodname_actions %} wor
2727
3. Create an `index.js` file and add a basic alert to say "Hello world!"
2828
{% raw %}
2929
```javascript{:copy}
30-
alert("Hello, World!");
30+
console.log("Hello, World!");
3131
```
3232
{% endraw %}
3333
4. Initialize an npm package with `npm init`. In the package initialization wizard, enter your package with the name: _`@YOUR-USERNAME/YOUR-REPOSITORY`_, and set the test script to `exit 0`. This will generate a `package.json` file with information about your package.

0 commit comments

Comments
 (0)