Skip to content

Commit

Permalink
ci: swallow exit code for npm list
Browse files Browse the repository at this point in the history
  • Loading branch information
hertzg committed Jul 19, 2020
1 parent 81d1d6d commit 66f1ea3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- name: Install dependencies
run: |
npm i --only=dev --prefer-offline --no-audit
npm list --depth=0
npm list --depth=0 || true
- name: Add dependencies for commitlint action
run: echo "::set-env name=NODE_PATH::$GITHUB_WORKSPACE/node_modules"
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
- name: Install dependencies
run: |
npm i --only=dev --prefer-offline --no-audit
npm list --depth=0
npm list --depth=0 || true
- name: Test TypeScript definitions
run: npm run test:tsd
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
- name: Install dependencies (full)
run: |
npm i --prefer-offline --no-audit
npm list --depth=0
npm list --depth=0 || true
- name: Test (tsd)
run: npm run test:tsd
Expand Down Expand Up @@ -181,7 +181,7 @@ jobs:
- name: Install dependencies
run: |
npm i --prefer-offline --no-audit
npm list --depth=0
npm list --depth=0 || true
- name: Release
env:
Expand Down

0 comments on commit 66f1ea3

Please sign in to comment.