ci testing

This commit is contained in:
Trent Jones
2020-02-29 13:31:33 -06:00
parent 452b50c500
commit f52e3ae7a4
3 changed files with 8 additions and 8 deletions

View File

@@ -9,12 +9,12 @@ on: # rebuild any PRs and main branch changes
jobs:
build: # make sure build/ci work properly
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: npm install
- run: npm run pack
# build: # make sure build/ci work properly
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - run: npm install
# - run: npm run pack
smoke-test: # make sure the action works on a clean machine without building
runs-on: ubuntu-latest

2
dist/index.js vendored
View File

@@ -15768,7 +15768,7 @@ function getVersionIds(input) {
}
exports.getVersionIds = getVersionIds;
function deleteVersions(input) {
console.log(`input: ${input}`);
console.log(`input: ${JSON.stringify(input)}`);
if (!input.token) {
return rxjs_1.throwError('No token found');
}

View File

@@ -24,7 +24,7 @@ export function getVersionIds(input: Input): Observable<string[]> {
}
export function deleteVersions(input: Input): Observable<boolean> {
console.log(`input: ${input}`)
console.log(`input: ${JSON.stringify(input)}`)
if (!input.token) {
return throwError('No token found')
}