Skip to content

Commit 536d2d2

Browse files
committed
Use pnpm
1 parent 6b2c326 commit 536d2d2

File tree

12 files changed

+4083
-7154
lines changed

12 files changed

+4083
-7154
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/setup-node@v3
1212
with:
1313
node-version: 20
14-
- run: npm install
15-
- run: npm run tsc
16-
- run: npm run build
17-
- run: npm test
14+
- run: pnpm install
15+
- run: pnpm tsc
16+
- run: pnpm build
17+
- run: pnpm test

.github/workflows/deploy-web.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
- uses: actions/setup-node@v3
1212
with:
1313
node-version: 20
14-
- run: npm install
15-
- run: npm run tsc
16-
- run: npm run build
17-
- run: npm test
14+
- run: pnpm install
15+
- run: pnpm tsc
16+
- run: pnpm build
17+
- run: pnpm test
1818
- uses: actions/upload-pages-artifact@v1
1919
with:
2020
path: ./packages/web/dist

.github/workflows/version-or-publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ jobs:
1919
- uses: actions/setup-node@v3
2020
with:
2121
node-version: 20
22-
- run: npm install
23-
- run: npm run build
24-
- run: npm run test
22+
- run: pnpm install
23+
- run: pnpm build
24+
- run: pnpm test
2525
- uses: changesets/action@v1
2626
with:
27-
publish: npx changeset publish
27+
publish: pnpm changeset publish
2828
env:
2929
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3030
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

0 commit comments

Comments
 (0)