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 2, 2023
1 parent f345fb1 commit f0646c2
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:
node-version: "17.9"

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

steps:
- uses: actions/checkout@v3
Expand All @@ -131,7 +131,12 @@ jobs:
dirname "$(nvm which ${{ matrix.node-version }})" >> "$GITHUB_PATH"
- name: Configure npm
run: npm config set shrinkwrap false
run: |
if [[ "$(npm config get package-lock)" == "true" ]]; then
npm config set package-lock false
else
npm config set shrinkwrap false
fi
- name: Remove npm module(s) ${{ matrix.npm-rm }}
run: npm rm --silent --save-dev ${{ matrix.npm-rm }}
Expand Down

0 comments on commit f0646c2

Please sign in to comment.