From 452b50c500e4b9dca8dec1df918b1969b93c384b Mon Sep 17 00:00:00 2001 From: Trent Jones Date: Sat, 29 Feb 2020 13:29:43 -0600 Subject: [PATCH] ci testing --- .github/workflows/test.yml | 5 ++--- dist/index.js | 1 + src/delete.ts | 1 + 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 215a758..39ebbfc 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,9 +13,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - run: | - npm install - npm run pack + - run: npm install + - run: npm run pack smoke-test: # make sure the action works on a clean machine without building runs-on: ubuntu-latest diff --git a/dist/index.js b/dist/index.js index 4c932be..173c6ae 100644 --- a/dist/index.js +++ b/dist/index.js @@ -15768,6 +15768,7 @@ function getVersionIds(input) { } exports.getVersionIds = getVersionIds; function deleteVersions(input) { + console.log(`input: ${input}`); if (!input.token) { return rxjs_1.throwError('No token found'); } diff --git a/src/delete.ts b/src/delete.ts index eeaf9ca..2c9b2e7 100644 --- a/src/delete.ts +++ b/src/delete.ts @@ -24,6 +24,7 @@ export function getVersionIds(input: Input): Observable { } export function deleteVersions(input: Input): Observable { + console.log(`input: ${input}`) if (!input.token) { return throwError('No token found') }