Skip to content

Commit

Permalink
migrate from yarn to pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
danprince committed May 29, 2024
1 parent 8345990 commit 2fa52d9
Show file tree
Hide file tree
Showing 4 changed files with 1,401 additions and 1,409 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ jobs:
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
- run: yarn install --frozen-lockfile
- run: yarn build
- run: pnpm install
- run: pnpm build
- uses: ncipollo/release-action@v1
with:
artifacts: "*.vsix"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v3
- name: Dependencies
run: yarn install --frozen-lockfile
run: pnpm install
- name: Typecheck
run: yarn tsc
run: pnpm tsc
- name: Tests
uses: GabrielBB/xvfb-action@v1.0
with:
run: yarn test
run: pnpm test
Loading

0 comments on commit 2fa52d9

Please sign in to comment.