This commit is contained in:
Philipp Kunz 2018-03-05 01:26:26 +01:00
parent ae25992806
commit 007bb2029d
3 changed files with 8 additions and 11 deletions

View File

@ -7,7 +7,6 @@ cache:
key: "$CI_BUILD_STAGE" key: "$CI_BUILD_STAGE"
stages: stages:
- mirror
- security - security
- test - test
- release - release
@ -15,13 +14,13 @@ stages:
- pages - pages
mirror: mirror:
stage: mirror stage: security
script: script:
- npmci git mirror - npmci git mirror
tags: tags:
- docker - docker
security: snyk:
stage: security stage: security
script: script:
- npmci command yarn global add snyk - npmci command yarn global add snyk

View File

@ -1,8 +1,8 @@
import { expect, tap } from 'tapbundle' import { expect, tap } from 'tapbundle';
import * as beautyfiglet from '../ts/index' import * as beautyfiglet from '../ts/index';
tap.test('first test', async () => { tap.test('first test', async () => {
console.log(beautyfiglet.standardExport) console.log(beautyfiglet.standardExport);
}) });
tap.start() tap.start();

View File

@ -1,4 +1,2 @@
const removeme = {}; const removeme = {};
export { export { removeme };
removeme
}