Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: nodejs/remark-preset-lint-node
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0e10afefe68651b63dcc087ebc5f679ea3503eaf
Choose a base ref
...
head repository: nodejs/remark-preset-lint-node
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 44a1764ae560f8f67eb24039e51798a37b3ae005
Choose a head ref
Loading
Showing with 1,146 additions and 508 deletions.
  1. +7 −4 .github/workflows/test.yml
  2. +1 −0 index.js
  3. +1,136 −502 package-lock.json
  4. +2 −2 package.json
11 changes: 7 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -17,20 +17,23 @@ jobs:
strategy:
fail-fast: false
matrix:
node: [12, 14, 16]
node:
- 14
- 16
- 18

steps:
- name: Clone repository
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Clone nodejs/node repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: nodejs/node
path: tmp

- name: Set up Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: npm
1 change: 1 addition & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -89,6 +89,7 @@ const plugins = [
remarkLintProhibitedStrings,
[
{ yes: "End-of-Life" },
{ no: "filesystem", yes: "file system" },
{ yes: "GitHub" },
{ no: "hostname", yes: "host name" },
{ yes: "JavaScript" },
Loading