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"
stages:
- mirror
- security
- test
- release
@ -15,13 +14,13 @@ stages:
- pages
mirror:
stage: mirror
stage: security
script:
- npmci git mirror
tags:
- docker
security:
snyk:
stage: security
script:
- npmci command yarn global add snyk

View File

@ -1,8 +1,8 @@
import { expect, tap } from 'tapbundle'
import * as beautyfiglet from '../ts/index'
import { expect, tap } from 'tapbundle';
import * as beautyfiglet from '../ts/index';
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 = {};
export {
removeme
}
export { removeme };