Skip to content

Commit b4fa2d1

Browse files
committed
fix: use npm instead of yarn
1 parent a90f3f3 commit b4fa2d1

6 files changed

Lines changed: 5797 additions & 4205 deletions

File tree

.github/workflows/develop.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@v1
1313

1414
- name: install dependencies
15-
run: yarn
15+
run: npm install
1616

1717
- name: Test
18-
run: yarn test
18+
run: npm run test

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
with:
1414
node-version: '14.x'
1515
registry-url: 'https://registry.npmjs.org'
16-
- run: yarn
17-
- run: yarn test
16+
- run: npm install
17+
- run: npm run test
1818
- name: Semantic Release
19-
run: yarn release
19+
run: npm run release
2020
env:
2121
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2222
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ npm-debug.log*
55
yarn-debug.log*
66
yarn-error.log*
77
lerna-debug.log*
8-
package-lock.json
8+
yarn.lock
99

1010
# Diagnostic reports (https://nodejs.org/api/report.html)
1111
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

0 commit comments

Comments
 (0)