Added test coverage report #23
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: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| - name: Install Vercel CLI | |
| run: npm install -g vercel@latest | |
| - name: Pull Vercel Environment | |
| run: vercel pull --yes --token ${{ secrets.VERCEL_TOKEN }} | |
| - name: Build Project | |
| run: vercel build --prod --token ${{ secrets.VERCEL_TOKEN }} | |
| - name: Deploy Project | |
| run: vercel deploy --prod --token ${{ secrets.VERCEL_TOKEN }} |