fix: const getRedirectUri #420
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: React.js CI | |
| on: | |
| push: | |
| branches: | |
| - dev | |
| - homolog | |
| - prod | |
| pull_request: | |
| branches: | |
| - dev | |
| - homolog | |
| - prod | |
| jobs: | |
| next_js_ci: | |
| name: Run React.js CI | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - name: Use Node.js 22.x | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 22.x | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Build React.js app | |
| run: npm run build |