Skip to content

Commit

Permalink
ci: npm list after install
Browse files Browse the repository at this point in the history
  • Loading branch information
hertzg committed Jul 19, 2020
1 parent 1512351 commit 81d1d6d
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ jobs:
npm-
- name: Install dependencies
run: npm i --only=dev --prefer-offline --no-audit
run: |
npm i --only=dev --prefer-offline --no-audit
npm list --depth=0
- name: Add dependencies for commitlint action
run: echo "::set-env name=NODE_PATH::$GITHUB_WORKSPACE/node_modules"
Expand Down Expand Up @@ -70,7 +72,9 @@ jobs:
npm-
- name: Install dependencies
run: npm i --only=dev --prefer-offline --no-audit
run: |
npm i --only=dev --prefer-offline --no-audit
npm list --depth=0
- name: Test TypeScript definitions
run: npm run test:tsd
Expand Down Expand Up @@ -112,8 +116,10 @@ jobs:
npm-${{ runner.os }}-
npm-
- name: Install dependencies
run: npm i --prefer-offline --no-audit
- name: Install dependencies (full)
run: |
npm i --prefer-offline --no-audit
npm list --depth=0
- name: Test (tsd)
run: npm run test:tsd
Expand Down Expand Up @@ -173,7 +179,9 @@ jobs:
npm-
- name: Install dependencies
run: npm i --only=dev --prefer-offline --no-audit
run: |
npm i --prefer-offline --no-audit
npm list --depth=0
- name: Release
env:
Expand Down

0 comments on commit 81d1d6d

Please sign in to comment.