Merge pull request #983 from jtpio/patch-1

[MRG] Update to node 14
pull/990/head
Min RK 2020-11-20 14:59:13 +01:00 zatwierdzone przez GitHub
commit f3229c1fd5
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
4 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@ -57,8 +57,8 @@ RUN groupadd \
RUN wget --quiet -O - https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add - && \
DISTRO="bionic" && \
echo "deb https://deb.nodesource.com/node_10.x $DISTRO main" >> /etc/apt/sources.list.d/nodesource.list && \
echo "deb-src https://deb.nodesource.com/node_10.x $DISTRO main" >> /etc/apt/sources.list.d/nodesource.list
echo "deb https://deb.nodesource.com/node_14.x $DISTRO main" >> /etc/apt/sources.list.d/nodesource.list && \
echo "deb-src https://deb.nodesource.com/node_14.x $DISTRO main" >> /etc/apt/sources.list.d/nodesource.list
# Base package installs are not super interesting to users, so hide their outputs
# If install fails for some reason, errors will still be printed

Wyświetl plik

@ -0,0 +1 @@
Test that node 12 and npm 6 are installed and runnable.

Wyświetl plik

@ -5,7 +5,7 @@ set -ex
# check node system package and its version
which node
node --version
node --version | grep v10
node --version | grep v14
which npm
npm --version

Wyświetl plik

@ -1 +0,0 @@
Test that node 10 and npm 6 are installed and runnable.