1 parent 525e981 commit 452a4dbCopy full SHA for 452a4db
1 file changed
.github/workflows/release-and-publish-to-npm.yml
@@ -15,6 +15,7 @@ jobs:
15
steps:
16
- name: Checkout repository
17
uses: actions/checkout@v4
18
+
19
- name: Initialize Git user
20
run: |
21
git config --global user.email "azeezat94@gmail.com"
@@ -29,8 +30,10 @@ jobs:
29
30
- name: Update npm to latest
31
run: npm install -g npm@latest
32
- - name: Install dependencies
33
- run: npm ci
+ - name: Install the dependencies
34
+ uses: borales/actions-yarn@v4
35
+ with:
36
+ cmd: install # will run `yarn install` command
37
38
- name: Publish to npm
39
run: npm run release --ci
0 commit comments