From 8e2d31c16e9ac6880f7899387475064bd1aab88c Mon Sep 17 00:00:00 2001 From: Nathan Melehan Date: Wed, 2 Aug 2023 21:46:10 -0400 Subject: [PATCH 1/3] Testing vale --- .../nodejs/testing-vale-1/index.md | 42 +++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 docs/guides/development/nodejs/testing-vale-1/index.md diff --git a/docs/guides/development/nodejs/testing-vale-1/index.md b/docs/guides/development/nodejs/testing-vale-1/index.md new file mode 100644 index 00000000000..f49d2e925b3 --- /dev/null +++ b/docs/guides/development/nodejs/testing-vale-1/index.md @@ -0,0 +1,42 @@ +--- +slug: testing-vale-1 +title: "Testing Vale 1" +description: 'Two to three sentences describing your guide.' +og_description: 'Two to three sentences describing your guide when shared on social media.' +keywords: ['list','of','keywords','and key phrases'] +license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' +authors: ["Linode"] +published: 2023-08-02 +modified_by: + name: Linode +external_resources: +- '[Link Title 1](http://www.example.com)' +- '[Link Title 2](http://www.example.net)' +--- + +Spellingmistake + +## Before You Begin + +1. If you have not already done so, create a Linode account and Compute Instance. See our [Getting Started with Linode](/docs/guides/getting-started/) and [Creating a Compute Instance](/docs/guides/creating-a-compute-instance/) guides. + +1. Follow our [Setting Up and Securing a Compute Instance](/docs/guides/set-up-and-secure/) guide to update your system. You may also wish to set the timezone, configure your hostname, create a limited user account, and harden SSH access. + +{{< note >}} +This guide is written for a non-root user. Commands that require elevated privileges are prefixed with `sudo`. If you’re not familiar with the `sudo` command, see the [Users and Groups](/docs/tools-reference/linux-users-and-groups/) guide. +{{< /note >}} + +{{< note >}} +The steps in this guide require root privileges. Be sure to run the steps below as `root` or with the `sudo` prefix. For more information on privileges, see our [Users and Groups](/docs/tools-reference/linux-users-and-groups/) guide. +{{< /note >}} + + +{{< caution >}} +Highlight warnings that could adversely affect a user's system with the Caution style. +{{< /caution >}} + +{{< file "/etc/hosts" aconf >}} +192.0.2.0/24 # Sample IP addresses +198.51.100.0/24 +203.0.113.0/24 +{{< /file >}} From 4f68267d2251471e9a26c2b3fcddb541385259f5 Mon Sep 17 00:00:00 2001 From: Nathan Melehan Date: Wed, 2 Aug 2023 21:54:37 -0400 Subject: [PATCH 2/3] Run tests on pull_request_target --- .github/workflows/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 40943b358a1..c8f32c18b34 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -1,6 +1,6 @@ name: CI Tests -on: [pull_request] +on: [pull_request_target] env: hugo-image-cache-name: hugo-generated-images From 07e5d0b80b4e081a698cf02cbc8c53ca112ec1c7 Mon Sep 17 00:00:00 2001 From: Nathan Melehan Date: Thu, 3 Aug 2023 10:44:41 -0400 Subject: [PATCH 3/3] Revert "Run tests on pull_request_target" This reverts commit 4f68267d2251471e9a26c2b3fcddb541385259f5. --- .github/workflows/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index c8f32c18b34..40943b358a1 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -1,6 +1,6 @@ name: CI Tests -on: [pull_request_target] +on: [pull_request] env: hugo-image-cache-name: hugo-generated-images