mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-04-01 02:42:23 -05:00
feat: add node 10 support for test and docker
update Docker to Node 10 we use yarn 1.6.0 as default for build
This commit is contained in:
parent
0dddb13462
commit
cee2564ac2
3 changed files with 8 additions and 4 deletions
|
@ -1,4 +1,4 @@
|
|||
FROM node:9.5.0-alpine@sha256:50ae5f22356c5a0b0c0ea76d27a453b0baf577c61633aee25cea93dcacec1630
|
||||
FROM node:10.1-alpine
|
||||
LABEL maintainer="https://github.com/verdaccio/verdaccio"
|
||||
|
||||
RUN apk --no-cache add openssl && \
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
machine:
|
||||
environment:
|
||||
YARN_VERSION: 1.3.2
|
||||
YARN_VERSION: 1.6.0
|
||||
PATH: "${PATH}:${HOME}/.yarn/bin:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin"
|
||||
node:
|
||||
version: 9
|
||||
|
|
|
@ -38,7 +38,9 @@ export default function () {
|
|||
});
|
||||
};
|
||||
|
||||
assert.throws(fnError, 'Auth invalid');
|
||||
expect(function ( ) {
|
||||
fnError();
|
||||
}).toThrow(Error('Auth invalid'));
|
||||
});
|
||||
|
||||
test('if assigns the header authorization', () => {
|
||||
|
@ -100,7 +102,9 @@ export default function () {
|
|||
})
|
||||
};
|
||||
|
||||
assert.throws(fnError, `Auth type 'null' not allowed`);
|
||||
expect(function ( ) {
|
||||
fnError();
|
||||
}).toThrow(Error(`Auth type 'null' not allowed`));
|
||||
});
|
||||
|
||||
test('set auth with NPM_TOKEN', () => {
|
||||
|
|
Loading…
Add table
Reference in a new issue