diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 39ebbfc..56c6e86 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 diff --git a/dist/index.js b/dist/index.js index 173c6ae..917ff9f 100644 --- a/dist/index.js +++ b/dist/index.js @@ -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'); } diff --git a/src/delete.ts b/src/delete.ts index 2c9b2e7..b1b71cf 100644 --- a/src/delete.ts +++ b/src/delete.ts @@ -24,7 +24,7 @@ export function getVersionIds(input: Input): Observable { } export function deleteVersions(input: Input): Observable { - console.log(`input: ${input}`) + console.log(`input: ${JSON.stringify(input)}`) if (!input.token) { return throwError('No token found') }