Compare commits
10 Commits
Author | SHA1 | Date | |
---|---|---|---|
dd8c30e7cf | |||
8f861d86c9 | |||
fe2581b533 | |||
db906cea1a | |||
9c1dca9ace | |||
c620549476 | |||
90697584d7 | |||
1252fa8f97 | |||
cdbc9823f1 | |||
9d7023e739 |
@ -1,5 +1,5 @@
|
||||
# gitzone ci_default
|
||||
image: hosttoday/ht-docker-node:npmci
|
||||
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
|
||||
|
||||
cache:
|
||||
paths:
|
||||
@ -49,23 +49,11 @@ testLTS:
|
||||
tags:
|
||||
- docker
|
||||
- notpriv
|
||||
|
||||
testSTABLE:
|
||||
stage: test
|
||||
script:
|
||||
- npmci npm prepare
|
||||
- npmci node install stable
|
||||
- npmci npm install
|
||||
- npmci npm test
|
||||
coverage: /\d+.?\d+?\%\s*coverage/
|
||||
tags:
|
||||
- docker
|
||||
- notpriv
|
||||
|
||||
release:
|
||||
stage: release
|
||||
script:
|
||||
- npmci node install stable
|
||||
- npmci node install lts
|
||||
- npmci npm publish
|
||||
only:
|
||||
- tags
|
||||
|
2
package-lock.json
generated
2
package-lock.json
generated
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gitzone/tools",
|
||||
"version": "2.0.3",
|
||||
"version": "2.0.8",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gitzone/tools",
|
||||
"version": "2.0.3",
|
||||
"version": "2.0.8",
|
||||
"private": false,
|
||||
"description": "setup your environment with the most important tools and update them easily.",
|
||||
"main": "dist/index.js",
|
||||
@ -37,7 +37,6 @@
|
||||
"dependencies": {
|
||||
"@gitzone/tsrun": "^1.2.6",
|
||||
"@pushrocks/smartcli": "^3.0.7",
|
||||
"@pushrocks/smartenv": "^4.0.6",
|
||||
"@pushrocks/smartfile": "^7.0.2",
|
||||
"@pushrocks/smartlog": "^2.0.19",
|
||||
"@pushrocks/smartlog-destination-local": "^8.0.2",
|
||||
|
@ -1,12 +1,9 @@
|
||||
import { expect, tap } from '@pushrocks/tapbundle';
|
||||
|
||||
import * as npmgInstall from '../ts/tools.install';
|
||||
import * as smartenv from '@pushrocks/smartenv';
|
||||
|
||||
let environment = new smartenv.Smartenv();
|
||||
import * as tools from '../ts/tools.install';
|
||||
|
||||
tap.test("should install default list globally when parsed 'default' as argument", async () => {
|
||||
await npmgInstall.install('default');
|
||||
await tools.install('default');
|
||||
});
|
||||
|
||||
tap.start();
|
||||
|
Reference in New Issue
Block a user