build(deps): bump eslint from 10.0.2 to 10.0.3 #574
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 Staging Environment | |
| env: | |
| VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} | |
| VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} | |
| on: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| app_deploy: | |
| name: Build and deploy application | |
| if: ${{ github.repository == 'sws2apps/sws2apps-console' && github.ref == 'refs/heads/main' }} | |
| environment: | |
| name: Staging | |
| url: https://staging-console.sws2apps.com | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout for release preparation | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
| - name: Use Node.js LTS version | |
| uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a | |
| with: | |
| node-version: lts/Jod | |
| - name: Install Vercel CLI | |
| run: npm install --global vercel@latest | |
| - name: Deploy project to Vercel | |
| run: vercel deploy --prod --token=${{ secrets.VERCEL_TOKEN }} |