Skip to content

Commit 452a4db

Browse files
committed
update workflows
1 parent 525e981 commit 452a4db

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/release-and-publish-to-npm.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jobs:
1515
steps:
1616
- name: Checkout repository
1717
uses: actions/checkout@v4
18+
1819
- name: Initialize Git user
1920
run: |
2021
git config --global user.email "azeezat94@gmail.com"
@@ -29,8 +30,10 @@ jobs:
2930
- name: Update npm to latest
3031
run: npm install -g npm@latest
3132

32-
- name: Install dependencies
33-
run: npm ci
33+
- name: Install the dependencies
34+
uses: borales/actions-yarn@v4
35+
with:
36+
cmd: install # will run `yarn install` command
3437

3538
- name: Publish to npm
3639
run: npm run release --ci

0 commit comments

Comments
 (0)