3131 runs-on : ubuntu-latest
3232 steps :
3333 - uses : actions/checkout@v4
34- - uses : ./.github/actions/yarn -install
35- - run : yarn build vuetify
34+ - uses : ./.github/actions/pnpm -install
35+ - run : pnpm build vuetify
3636 - uses : ./.github/actions/upload-artifact
3737 with :
3838 name : vuetify-dist
5454 - uses : ./.github/actions/download-artifact
5555 with :
5656 name : vuetify-dist
57- - uses : ./.github/actions/yarn -install
58- - run : yarn lerna run lint $SCOPES
57+ - uses : ./.github/actions/pnpm -install
58+ - run : pnpm lerna run lint $SCOPES
5959 env :
6060 SCOPES : ${{ matrix.scopes }}
6161
6666 runs-on : ubuntu-latest
6767 steps :
6868 - uses : actions/checkout@v4
69- - uses : ./.github/actions/yarn -install
70- - run : yarn run test:coverage -i
69+ - uses : ./.github/actions/pnpm -install
70+ - run : pnpm run test:coverage -i
7171 working-directory : ./packages/vuetify
7272 - uses : codecov/codecov-action@v4
7373
@@ -78,13 +78,13 @@ jobs:
7878 runs-on : ubuntu-latest
7979 steps :
8080 - uses : actions/checkout@v4
81- - uses : ./.github/actions/yarn -install
82- - run : yarn cy:run --record --parallel --ci-build-id $GITHUB_RUN_ID
81+ - uses : ./.github/actions/pnpm -install
82+ - run : pnpm cy:run --record --parallel --ci-build-id $GITHUB_RUN_ID
8383 if : ${{ !startswith(github.ref, 'refs/tags/v') && github.repository_owner == 'vuetifyjs' }}
8484 working-directory : ./packages/vuetify
8585 env :
8686 CYPRESS_RECORD_KEY : ${{ secrets.CYPRESS_RECORD_KEY }}
87- - run : yarn cy:run
87+ - run : pnpm cy:run
8888 if : ${{ !startswith(github.ref, 'refs/tags/v') && github.repository_owner != 'vuetifyjs' }}
8989 working-directory : ./packages/vuetify
9090 - uses : actions/upload-artifact@v3
@@ -105,8 +105,8 @@ jobs:
105105 - uses : ./.github/actions/download-artifact
106106 with :
107107 name : vuetify-dist
108- - uses : ./.github/actions/yarn -install
109- - run : yarn build api
108+ - uses : ./.github/actions/pnpm -install
109+ - run : pnpm build api
110110 - run : echo "RELEASE_TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
111111 - name : NPM Release
112112 run : bash scripts/deploy.sh
@@ -115,7 +115,7 @@ jobs:
115115 RELEASE_TAG : ${{ env.RELEASE_TAG }}
116116 - name : GitHub release
117117 id : create_release
118- run : yarn conventional-github-releaser -p vuetify
118+ run : pnpm conventional-github-releaser -p vuetify
119119 env :
120120 DEBUG : ' *'
121121 CONVENTIONAL_GITHUB_RELEASER_TOKEN : ${{ secrets.GITHUB_TOKEN }}
@@ -130,10 +130,10 @@ jobs:
130130 - uses : ./.github/actions/download-artifact
131131 with :
132132 name : vuetify-dist
133- - uses : ./.github/actions/yarn -install
133+ - uses : ./.github/actions/pnpm -install
134134 - uses : ./.github/actions/download-locales
135- - run : yarn build api
136- - run : yarn build docs
135+ - run : pnpm build api
136+ - run : pnpm build docs
137137 env :
138138 NODE_OPTIONS : --max-old-space-size=4096
139139 VITE_COSMIC_2_BUCKET_SLUG : ${{ secrets.COSMIC_2_BUCKET_SLUG }}
@@ -161,8 +161,8 @@ jobs:
161161 - uses : ./.github/actions/download-artifact
162162 with :
163163 name : docs-dist
164- - uses : ./.github/actions/yarn -install
165- - run : yarn global add vercel
164+ - uses : ./.github/actions/pnpm -install
165+ - run : pnpm add vercel --global
166166 - run : node scripts/deploy-and-alias.js ${{ github.ref }}
167167 env :
168168 NOW_TOKEN : ${{ secrets.NOW_TOKEN }}
0 commit comments