Skip to content

Commit

Permalink
Merge pull request #22 from danprince/pnpm
Browse files Browse the repository at this point in the history
Pnpm
  • Loading branch information
danprince committed May 29, 2024
2 parents cccf71d + ffc2ddd commit 97d64cc
Show file tree
Hide file tree
Showing 4 changed files with 1,408 additions and 1,409 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,11 @@ jobs:
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
- run: yarn install --frozen-lockfile
- run: yarn build
- uses: pnpm/action-setup@v4
with:
version: 8
- run: pnpm install
- run: pnpm build
- uses: ncipollo/release-action@v1
with:
artifacts: "*.vsix"
Expand Down
10 changes: 7 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,15 @@ jobs:
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v3
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 8
- 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 97d64cc

Please sign in to comment.