Skip to content

Commit 4e800e3

Browse files
authored
revert pnpm (#30)
* revert pnpm * back to yarn
1 parent 7581417 commit 4e800e3

File tree

4 files changed

+6269
-8415
lines changed

4 files changed

+6269
-8415
lines changed

.github/workflows/lint.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,12 @@ jobs:
2222
steps:
2323
- name: Checkout
2424
uses: actions/checkout@v2
25-
- name: Install pnpm
26-
uses: pnpm/action-setup@v2.0.1
27-
with:
28-
version: 6.17.0
2925
- name: Setup Node.js v14.x
3026
uses: actions/setup-node@v2
3127
with:
3228
node-version: 14
33-
cache: 'pnpm'
29+
cache: 'yarn'
3430
- name: Install
35-
run: pnpm install
31+
run: yarn install
3632
- name: Lint
37-
run: pnpm run lint
33+
run: yarn lint

.github/workflows/test.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,12 @@ jobs:
2626
steps:
2727
- name: Checkout
2828
uses: actions/checkout@v2
29-
- name: Install pnpm
30-
uses: pnpm/action-setup@v2.0.1
31-
with:
32-
version: 6.17.0
3329
- name: Setup Node.js ${{ matrix.node }}
3430
uses: actions/setup-node@v2
3531
with:
3632
node-version: ${{ matrix.node }}
37-
cache: 'pnpm'
33+
cache: 'yarn'
3834
- name: Install
39-
run: pnpm install
35+
run: yarn install
4036
- name: Test
41-
run: pnpm test
37+
run: yarn test

0 commit comments

Comments
 (0)