fix: redirect to login page after forgot password submission (#21902) #6154
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
| on: | |
| push: | |
| branches: | |
| - 'release/4.**' | |
| - 'epic/**' | |
| - 'develop' | |
| - 'develop-*' | |
| name: Installation | |
| permissions: | |
| contents: read | |
| actions: write | |
| jobs: | |
| detect_changes: | |
| name: Installation - Detect changes | |
| runs-on: ubuntu-latest | |
| outputs: | |
| RUN_CHECKS: ${{ steps.detect_code_changes.outputs.RUN_CHECKS }} | |
| steps: | |
| - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| - name: Detect code changes | |
| id: detect_code_changes | |
| uses: ./.github/actions/detect-changes | |
| install: | |
| needs: [detect_changes] | |
| name: Build libs and install | |
| environment: dev | |
| runs-on: ubuntu-latest | |
| if: ${{ needs.detect_changes.outputs.RUN_CHECKS == 'true' }} | |
| steps: | |
| - name: Cancel Previous Runs | |
| uses: styfle/cancel-workflow-action@d07a454dad7609a92316b57b23c9ccfd4f59af66 # 0.13.1 | |
| with: | |
| access_token: ${{ secrets.GITHUB_TOKEN }} | |
| - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| - uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 #v4.4.0 | |
| with: | |
| node-version: '20' | |
| - name: NPM | |
| run: npm ci | |
| env: | |
| FORCE_COLOR: 2 # Support colors from chalk | |
| - name: run installation script | |
| run: cd ./scripts/install && ./run.sh install && ./run.sh start |