File tree 2 files changed +7
-7
lines changed
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -89,10 +89,10 @@ jobs:
89
89
npm --version
90
90
- name : Install yarn
91
91
run : |
92
- npm install --global yarn
92
+ npm install --verboase -- global yarn
93
93
yarn add --dev jest typescript ts-jest @types/jest
94
94
- name : Install commitlint dependencies
95
- run : npm install @commitlint/types
95
+ run : npm install --verbose @commitlint/types
96
96
- name : Print versions
97
97
run : |
98
98
git --version
@@ -119,10 +119,10 @@ jobs:
119
119
sudo apt install --yes --no-install-recommends npm curl
120
120
- name : Install yarn
121
121
run : |
122
- npm install --global yarn
122
+ npm install --verbose -- global yarn
123
123
yarn add --dev jest typescript ts-jest @types/jest ts-node
124
124
- name : Install commitlint dependencies
125
- run : npm install @commitlint/types
125
+ run : npm install --verbose @commitlint/types
126
126
- name : Run typescript compiler
127
127
run : npx tsc
128
128
- name : Print versions
@@ -218,7 +218,7 @@ jobs:
218
218
dotnet restore
219
219
dotnet fsi scripts/sanityCheckNuget.fsx
220
220
- name : Install prettier
221
- run :
npm install [email protected]
221
+ run :
npm install --verbose [email protected]
222
222
- name : Change file permissions
223
223
# We need this step so we can change the files using `npx prettier --write` in the next step.
224
224
# Otherwise we get permission denied error in the CI.
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ set -euxo pipefail
3
3
4
4
# cd to directory of this script
5
5
cd " $( dirname " $0 " ) "
6
- npm install
7
- npm install @commitlint/config-conventional
6
+ npm install --verbose
7
+ npm install --verbose @commitlint/config-conventional
8
8
npx commitlint --version
9
9
npx commitlint $@
You can’t perform that action at this time.
0 commit comments