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 @@ -17,14 +17,14 @@ jobs:
17
17
with :
18
18
# Disabling shallow clone is recommended for improving relevancy of reporting
19
19
fetch-depth : 0
20
- - run : npm install
20
+ - run : make install
21
21
- name : Use Node.js ${{ matrix.node-version }}
22
22
uses : actions/setup-node@v2
23
23
with :
24
24
node-version : ${{ matrix.node-version }}
25
25
cache : ' npm'
26
26
- name : Run tests
27
- run : npm test
27
+ run : make test
28
28
- name : SonarCloud Scan
29
29
uses : sonarsource/sonarcloud-github-action@master
30
30
env :
Original file line number Diff line number Diff line change @@ -35,14 +35,14 @@ jobs:
35
35
steps :
36
36
- name : Checkout cli-core repo
37
37
uses : actions/checkout@v2
38
- - run : npm install
38
+ - run : make install
39
39
- name : Use Node.js ${{ matrix.node-version }}
40
40
uses : actions/setup-node@v2
41
41
with :
42
42
node-version : ${{ matrix.node-version }}
43
43
cache : ' npm'
44
44
- name : Run tests
45
- run : npm test
45
+ run : make test
46
46
update-api-specs :
47
47
runs-on : ubuntu-latest
48
48
# needs: [test]
67
67
- name : Update OAI specs
68
68
id : update-specs
69
69
run : |
70
- npm install
70
+ make install
71
71
cp -R ~/oai_definitions/CHANGES.md OAI_CHANGES.md
72
72
source .github/scripts/update-api-spec-with-changelog.sh
73
73
echo "::set-output name=change-log::$changeLog"
84
84
persist-credentials : false
85
85
- run : |
86
86
git pull
87
- npm install
87
+ make install
88
88
- name : semanticRelease
89
89
id : semantic-release
90
90
run : npx semantic-release -t \${version}
@@ -108,7 +108,7 @@ jobs:
108
108
uses : actions/checkout@v2
109
109
- run : |
110
110
git pull
111
- npm install
111
+ make install
112
112
- name : Invoke CLI workflow with changelog and version-type
113
113
run : |
114
114
fileName="$GITHUB_WORKSPACE/.github/scripts/trigger-workflow.js"
You can’t perform that action at this time.
0 commit comments