Skip to content
This repository was archived by the owner on Jun 27, 2023. It is now read-only.

Commit 0aea046

Browse files
committed
fix(ci): added yarn for pipelines
1 parent 6391f8b commit 0aea046

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ jobs:
1616
with:
1717
node-version: 12
1818
- name: Install dependencies
19-
run: npm ci
19+
run: yarn
2020
- name: Build Library
21-
run: npm run build
21+
run: yarn build

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ jobs:
1616
with:
1717
node-version: 12
1818
- name: Install dependencies
19-
run: npm ci
19+
run: yarn
2020
- name: Build Library
21-
run: npm run build
21+
run: yarn build
2222
- name: Release
2323
env:
2424
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2525
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
2626
CI: true
27-
run: npm run semantic-release
27+
run: yarn semantic-release

0 commit comments

Comments
 (0)