Skip to content

Commit

Permalink
build: Node.js@18.14
Browse files Browse the repository at this point in the history
  • Loading branch information
dougwilson committed Feb 22, 2023
1 parent f05b5d0 commit 546969d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
node-version: "17.9"

- name: Node.js 18.x
node-version: "18.12"
node-version: "18.14"

steps:
- uses: actions/checkout@v3
Expand All @@ -120,7 +120,11 @@ jobs:
- name: Configure npm
run: |
npm config set loglevel error
npm config set shrinkwrap false
if [[ "$(npm config get package-lock)" == "true" ]]; then
npm config set package-lock false
else
npm config set shrinkwrap false
fi
- name: Install npm module(s) ${{ matrix.npm-i }}
run: npm install --save-dev ${{ matrix.npm-i }}
Expand Down
8 changes: 6 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ environment:
- nodejs_version: "15.14"
- nodejs_version: "16.19"
- nodejs_version: "17.9"
- nodejs_version: "18.12"
- nodejs_version: "18.14"
cache:
- node_modules
install:
Expand All @@ -30,7 +30,11 @@ install:
# Configure npm
- ps: |
npm config set loglevel error
npm config set shrinkwrap false
if ((npm config get package-lock) -eq "true") {
npm config set package-lock false
} else {
npm config set shrinkwrap false
}
# Remove all non-test dependencies
- ps: |
# Remove example dependencies
Expand Down

0 comments on commit 546969d

Please sign in to comment.