Skip to content

Commit 35f69da

Browse files
committed
switch back to yarn
1 parent 74f5a9c commit 35f69da

File tree

4 files changed

+2179
-2156
lines changed

4 files changed

+2179
-2156
lines changed

.github/workflows/CI.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,15 @@ jobs:
1313
with:
1414
node-version: "14.x"
1515
registry-url: "https://registry.npmjs.org"
16-
- uses: pnpm/[email protected]
17-
with:
18-
version: 6.9.1
1916

2017
- name: install deps
21-
run: pnpm install --frozen-lockfile
18+
run: yarn install --frozen-lockfile
2219

2320
- name: build
24-
run: pnpm tsc
21+
run: yarn tsc
2522

2623
- name: lint
27-
run: pnpm lint
24+
run: yarn lint
2825

2926
- name: check with prettier
30-
run: pnpm prettier . --check
27+
run: yarn prettier . --check

.github/workflows/publish.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,12 @@ jobs:
1212
with:
1313
node-version: "14.x"
1414
registry-url: "https://registry.npmjs.org"
15-
- uses: pnpm/[email protected]
16-
with:
17-
version: 6.9.1
1815

1916
- name: install deps
20-
run: pnpm install --frozen-lockfile
17+
run: yarn install --frozen-lockfile
2118

2219
- name: build
23-
run: pnpm vsce package
20+
run: yarn vsce package
2421

2522
- name: Release
2623
uses: softprops/action-gh-release@v1

0 commit comments

Comments
 (0)