Alert when editing vitals of old visit #477
This file contains 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: preview | |
on: | |
pull_request: | |
workflow_dispatch: | |
env: | |
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} | |
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} | |
jobs: | |
preview: | |
runs-on: ubuntu-latest | |
environment: | |
name: Preview | |
url: ${{ steps.deploy.outputs.url }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- run: npm install -g pnpm | |
- run: pnpm install | |
- run: pnpm vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }} | |
- run: pnpm vercel build --token=${{ secrets.VERCEL_TOKEN }} | |
- id: deploy | |
run: echo "::set-output name=url::$(pnpm vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }})" |