build(deps): bump pnpm/action-setup from 4.1.0 to 4.2.0 in the github-actions group #458
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build | |
| on: | |
| push: | |
| branches-ignore: [master] | |
| pull_request: | |
| branches: [master] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| name: Build and Deploy to Vercel Preview | |
| runs-on: ubuntu-latest | |
| environment: | |
| name: preview | |
| url: ${{ steps.deployment.outputs.DEPLOYMENT_URL }} | |
| env: | |
| TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
| TURBO_TEAM: ${{ github.actor }} | |
| VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} | |
| VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} | |
| steps: | |
| - uses: actions/checkout@v5.0.0 | |
| - name: Set up pnpm | |
| uses: pnpm/action-setup@v4.2.0 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v5.0.0 | |
| with: | |
| node-version-file: package.json | |
| cache: "pnpm" | |
| - run: pnpm install --global vercel@latest | |
| - run: vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }} | |
| - run: vercel build --token=${{ secrets.VERCEL_TOKEN }} | |
| - run: | | |
| vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }} | \ | |
| xargs -I {} echo "DEPLOYMENT_URL={}" >> "${GITHUB_OUTPUT}" | |
| id: deployment |