style(api): prettier-format graphql codegen output #484
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: Deploy to Vercel | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [main] | |
| jobs: | |
| cd: | |
| environment: production | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set up devkit | |
| uses: sablier-labs/devkit/actions/setup@v1 | |
| with: | |
| save-cache: true | |
| - name: Run the code checks | |
| run: just full-check | |
| - name: Deploy to Vercel | |
| env: | |
| VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} | |
| VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} | |
| VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }} | |
| run: just deploy | |
| - name: Add summary | |
| run: | | |
| echo "## Continuous Deployment results" >> $GITHUB_STEP_SUMMARY | |
| echo "✅ Passed" >> $GITHUB_STEP_SUMMARY |