From 0b1b8f13180673653dae80545932da298362a158 Mon Sep 17 00:00:00 2001 From: Luke Karrys Date: Tue, 20 Sep 2022 14:37:47 -0700 Subject: [PATCH] chore(ci): test in node 18 --- .github/workflows/audit.yml | 2 +- .github/workflows/ci-release.yml | 3 ++- .github/workflows/ci.yml | 3 ++- .github/workflows/post-dependabot.yml | 2 +- .github/workflows/pull-request.yml | 2 +- .github/workflows/release.yml | 6 +++--- .gitignore | 2 +- package.json | 5 +++-- 8 files changed, 14 insertions(+), 11 deletions(-) diff --git a/.github/workflows/audit.yml b/.github/workflows/audit.yml index 7ecff0a0..9fd285d8 100644 --- a/.github/workflows/audit.yml +++ b/.github/workflows/audit.yml @@ -29,7 +29,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v3 with: - node-version: 16.x + node-version: 18.x - name: Install npm@latest run: npm i --prefer-online --no-fund --no-audit -g npm@latest - name: npm Version diff --git a/.github/workflows/ci-release.yml b/.github/workflows/ci-release.yml index 60c20519..2e7785e5 100644 --- a/.github/workflows/ci-release.yml +++ b/.github/workflows/ci-release.yml @@ -50,7 +50,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v3 with: - node-version: 16.x + node-version: 18.x - name: Install npm@latest run: npm i --prefer-online --no-fund --no-audit -g npm@latest - name: npm Version @@ -91,6 +91,7 @@ jobs: - 12.x - 14.x - 16.x + - 18.x runs-on: ${{ matrix.platform.os }} defaults: run: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 42dbfdc5..23285d8a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,7 +34,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v3 with: - node-version: 16.x + node-version: 18.x - name: Install npm@latest run: npm i --prefer-online --no-fund --no-audit -g npm@latest - name: npm Version @@ -68,6 +68,7 @@ jobs: - 12.x - 14.x - 16.x + - 18.x runs-on: ${{ matrix.platform.os }} defaults: run: diff --git a/.github/workflows/post-dependabot.yml b/.github/workflows/post-dependabot.yml index 8aeda5af..c865a929 100644 --- a/.github/workflows/post-dependabot.yml +++ b/.github/workflows/post-dependabot.yml @@ -30,7 +30,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v3 with: - node-version: 16.x + node-version: 18.x - name: Install npm@latest run: npm i --prefer-online --no-fund --no-audit -g npm@latest - name: npm Version diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index f47cbafc..a194b619 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -33,7 +33,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v3 with: - node-version: 16.x + node-version: 18.x - name: Install npm@latest run: npm i --prefer-online --no-fund --no-audit -g npm@latest - name: npm Version diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a710c6e4..6e282516 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -42,7 +42,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v3 with: - node-version: 16.x + node-version: 18.x - name: Install npm@latest run: npm i --prefer-online --no-fund --no-audit -g npm@latest - name: npm Version @@ -125,7 +125,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v3 with: - node-version: 16.x + node-version: 18.x - name: Install npm@latest run: npm i --prefer-online --no-fund --no-audit -g npm@latest - name: npm Version @@ -229,7 +229,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v3 with: - node-version: 16.x + node-version: 18.x - name: Install npm@latest run: npm i --prefer-online --no-fund --no-audit -g npm@latest - name: npm Version diff --git a/.gitignore b/.gitignore index dfcc3c51..effd9b9a 100644 --- a/.gitignore +++ b/.gitignore @@ -16,6 +16,7 @@ !/CHANGELOG* !/CODE_OF_CONDUCT.md !/docs/ +!/index.js !/lib/ !/LICENSE* !/map.js @@ -26,4 +27,3 @@ !/SECURITY.md !/tap-snapshots/ !/test/ -!index.js diff --git a/package.json b/package.json index 62e6fb5e..bd1cc0e7 100644 --- a/package.json +++ b/package.json @@ -63,14 +63,15 @@ "index.js" ], "allowPaths": [ - "index.js" + "/index.js" ], "ciVersions": [ "10.0.0", "10.x", "12.x", "14.x", - "16.x" + "16.x", + "18.x" ] } }