Skip to content

Commit 296bf5a

Browse files
committed
Update workflow files
1 parent 7e6ae7d commit 296bf5a

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

.github/workflows/CI-pipeline.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
with:
4242
node-version: ${{ matrix.node }}
4343

44-
- name: Install of node dependencies
44+
- name: Install dependencies
4545
run: npm install
4646

4747
- name: Build the source code

.github/workflows/publish.yml

+3-5
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,11 @@ jobs:
2727
uses: actions/setup-node@v4
2828
with:
2929
node-version: 20
30-
- name: Install of node dependencies
30+
- name: Install dependencies
3131
run: npm install
3232
- name: Run lint
3333
run: npm run lint
34-
- name: Run tests
35-
run: npm test
36-
- name: Check coverage
34+
- name: Run tests and check coverage
3735
run: npm run test:coverage
3836

3937
publish-to-npm-and-gpr:
@@ -47,7 +45,7 @@ jobs:
4745
with:
4846
node-version: 20
4947
registry-url: 'https://registry.npmjs.org'
50-
- name: Install of node dependencies
48+
- name: Install dependencies
5149
run: npm install
5250
- name: Publish to NPM
5351
run: |

0 commit comments

Comments
 (0)