Skip to content

Commit

Permalink
chore(ci): test in node 18
Browse files Browse the repository at this point in the history
  • Loading branch information
lukekarrys committed Sep 20, 2022
1 parent 8d18199 commit 0b1b8f1
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/audit.yml
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/ci-release.yml
Expand Up @@ -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
Expand Down Expand Up @@ -91,6 +91,7 @@ jobs:
- 12.x
- 14.x
- 16.x
- 18.x
runs-on: ${{ matrix.platform.os }}
defaults:
run:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Expand Up @@ -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
Expand Down Expand Up @@ -68,6 +68,7 @@ jobs:
- 12.x
- 14.x
- 16.x
- 18.x
runs-on: ${{ matrix.platform.os }}
defaults:
run:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/post-dependabot.yml
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull-request.yml
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Expand Up @@ -16,6 +16,7 @@
!/CHANGELOG*
!/CODE_OF_CONDUCT.md
!/docs/
!/index.js
!/lib/
!/LICENSE*
!/map.js
Expand All @@ -26,4 +27,3 @@
!/SECURITY.md
!/tap-snapshots/
!/test/
!index.js
5 changes: 3 additions & 2 deletions package.json
Expand Up @@ -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"
]
}
}

0 comments on commit 0b1b8f1

Please sign in to comment.