Skip to content

Commit

Permalink
conda buildpack: accept that refreeze brought in npm 9
Browse files Browse the repository at this point in the history
  • Loading branch information
consideRatio committed Apr 9, 2023
1 parent f87c86c commit 3068954
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tests/base/node/verify
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ which node
node --version
node --version | grep v18

# npm comes with the nodejs conda-forge package that we have pinned, but we
# don't have npm pinned. For example nodejs 18.13.0 brought npm 8.19.3, but
# nodejs 18.14.0 brought npm 9.3.1.
#
# Since we have no npm version pinning, we just test that some version is
# installed.
#
which npm
npm --version
npm --version | grep 8.

0 comments on commit 3068954

Please sign in to comment.