cloud: Fix forward_auth to use handle_response for unauthorized redirect #964
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: app build & lint | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches-ignore: | |
| - 'devops/**' # Ignore any branch prefixed with devops/ | |
| pull_request: | |
| branches-ignore: | |
| - 'devops/**' # Ignore any branch prefixed with devops/ | |
| jobs: | |
| build-app: | |
| runs-on: ubuntu-20.04 | |
| permissions: | |
| contents: read | |
| container: | |
| image: node:20.10-alpine | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Build app | |
| run: | | |
| docker build --target test -t statbus-app-test -f app/Dockerfile app | |
| - name: Run App Tests | |
| run: | | |
| docker run --rm statbus-app-test |