Skip to content

Commit 6f00695

Browse files
committed
Migrate to pnpm
1 parent 707b371 commit 6f00695

File tree

829 files changed

+11642
-15725
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

829 files changed

+11642
-15725
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,14 @@ jobs:
4545
- uses: actions/setup-node@v3
4646
with:
4747
node-version: 16
48-
cache: yarn
49-
- run: yarn install --immutable
48+
- uses: pnpm/action-setup@v2
49+
- run: pnpm install --shamefully-hoist
5050
- run: docker-compose up -d
5151
- uses: cypress-io/[email protected]
5252
with:
5353
config: baseUrl=http://localhost:3000
54-
build: yarn build
55-
start: yarn preview
54+
build: pnpm build
55+
start: pnpm preview
5656
wait-on: 'http://localhost:3000,http://localhost:32777'
5757
- uses: actions/upload-artifact@v3
5858
if: failure()

.github/workflows/deploy.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ jobs:
3434
- uses: actions/setup-node@v3
3535
with:
3636
node-version: 16
37-
cache: yarn
38-
- run: yarn install --immutable
39-
- run: yarn vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
40-
- run: yarn vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}
37+
- uses: pnpm/action-setup@v2
38+
- run: pnpm install --shamefully-hoist
39+
- run: pnpm vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
40+
- run: pnpm vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}
4141
- run: cp ./.vercel/output/static/manifest.webmanifest ./.vercel/output/static/manifest.json
4242
- run: cp ./.vercel/output/static/sw.js ./.vercel/output/static/service-worker.js
43-
- run: yarn vercel deploy --prod --prebuilt --token=${{ secrets.VERCEL_TOKEN }}
43+
- run: pnpm vercel deploy --prod --prebuilt --token=${{ secrets.VERCEL_TOKEN }}

.github/workflows/preview.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ jobs:
4141
- uses: actions/setup-node@v3
4242
with:
4343
node-version: 16
44-
cache: yarn
45-
- run: yarn install --immutable
46-
- run: yarn vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }}
47-
- run: yarn vercel build --token=${{ secrets.VERCEL_TOKEN }}
44+
- uses: pnpm/action-setup@v2
45+
- run: pnpm install --shamefully-hoist
46+
- run: pnpm vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }}
47+
- run: pnpm vercel build --token=${{ secrets.VERCEL_TOKEN }}
4848
- run: cp ./.vercel/output/static/manifest.webmanifest ./.vercel/output/static/manifest.json
4949
- run: cp ./.vercel/output/static/sw.js ./.vercel/output/static/service-worker.js
5050
- id: deploy
5151
run: |
52-
url=`yarn vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }}`
52+
url=`pnpm vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }}`
5353
echo "::set-output name=url::$url"
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)