fix keycloak session timeout errors #3447
Workflow file for this run
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: Run Tests | |
| on: | |
| push: | |
| tags: | |
| - cypress | |
| pull_request: | |
| branches: | |
| - dev-env | |
| - test-env | |
| - master | |
| env: | |
| KEYCLOAK_LOCAL_USERNAME: 'test-admin' | |
| KEYCLOAK_LOCAL_PASSWORD: ${{ secrets.KEYCLOAK_LOCAL_PASSWORD}} | |
| KEYCLOAK_LOCAL_AUTH_URL: 'http://keycloak.localhost:8080/auth' | |
| KEYCLOAK_LOCAL_SECRET: ${{ secrets.KEYCLOAK_LOCAL_SECRET }} | |
| FEATURE_KEYCLOAK_MIGRATION: true | |
| APP_ENV: local | |
| jobs: | |
| cypress-test: | |
| name: Cypress | |
| runs-on: ubuntu-22.04 | |
| timeout-minutes: 20 | |
| steps: | |
| - name: Cancel Previous Runs | |
| uses: styfle/cancel-workflow-action@0.9.1 | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Setup Node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: '24' | |
| - name: Install docker-compose | |
| run: | | |
| sudo curl -L "https://github.com/docker/compose/releases/latest/download/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose | |
| sudo chmod +x /usr/local/bin/docker-compose | |
| docker-compose --version | |
| - name: Cache node modules | |
| id: cache-npm | |
| uses: actions/cache@v3 | |
| env: | |
| cache-name: cache-node-modules | |
| with: | |
| path: | | |
| ~/.npm | |
| **/node_modules | |
| key: ${{ runner.os }}-npm | |
| restore-keys: ${{ runner.os }}-npm | |
| - if: ${{ steps.cache-npm.outputs.cache-hit == 'false' }} | |
| name: List the state of node modules | |
| continue-on-error: true | |
| run: npm list | |
| - name: Install Server Dependencies | |
| run: npm install --prefix server | |
| - name: Make env | |
| run: | | |
| cat > .env << EOF | |
| ${{ secrets.ENVFILE }} | |
| NODE_ENV=test | |
| KEYCLOAK_AUTH_URL=${{ secrets.KEYCLOAK_LOCAL_AUTH_URL }} | |
| KEYCLOAK_LOCAL_SECRET=${{ secrets.KEYCLOAK_LOCAL_SECRET }} | |
| KEYCLOAK_LOCAL_REALM=${{ secrets.KEYCLOAK_LOCAL_REALM }} | |
| KEYCLOAK_LOCAL_API_CLIENTID=${{ secrets.KEYCLOAK_LOCAL_API_CLIENTID }} | |
| KEYCLOAK_LOCAL_FE_CLIENTID=${{ secrets.KEYCLOAK_LOCAL_FE_CLIENTID }} | |
| EOF | |
| - name: Build and Run | |
| run: make local-kc-run | |
| - name: Import Users | |
| run: make kc-import-users | |
| - name: Add Test Data | |
| run: cd server && POSTGRES_HOST=localhost npm run feed-data | |
| - name: Cypress run | |
| uses: cypress-io/github-action@v6 | |
| with: | |
| wait-on-timeout: 120 | |
| wait-on: 'http://hcapemployers.localhost:4000' | |
| - name: Upload screenshots | |
| uses: actions/upload-artifact@v4 | |
| if: failure() | |
| with: | |
| name: screenshots | |
| path: cypress/screenshots/ | |
| jest-test: | |
| name: Jest | |
| runs-on: ubuntu-22.04 | |
| timeout-minutes: 20 | |
| steps: | |
| - name: Cancel Previous Runs | |
| uses: styfle/cancel-workflow-action@0.9.1 | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Setup Node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: '24' | |
| - name: Install docker-compose | |
| run: | | |
| sudo curl -L "https://github.com/docker/compose/releases/latest/download/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose | |
| sudo chmod +x /usr/local/bin/docker-compose | |
| docker-compose --version | |
| - name: Cache node modules | |
| id: cache-npm | |
| uses: actions/cache@v3 | |
| env: | |
| cache-name: cache-node-modules | |
| with: | |
| path: | | |
| ~/.npm | |
| **/node_modules | |
| key: ${{ runner.os }}-npm-${{ hashFiles('server/package-lock.json') }} | |
| restore-keys: ${{ runner.os }}-npm | |
| - if: ${{ steps.cache-npm.outputs.cache-hit == 'false' }} | |
| name: List the state of node modules | |
| continue-on-error: true | |
| run: npm list | |
| - name: Install Server Dependencies | |
| run: npm install --prefix server | |
| - name: Make env | |
| run: | | |
| cat > .env << EOF | |
| ${{ secrets.ENVFILE }} | |
| KEYCLOAK_LOCAL_SECRET=${{ secrets.KEYCLOAK_LOCAL_SECRET }} | |
| KEYCLOAK_LOCAL_REALM=${{ secrets.KEYCLOAK_LOCAL_REALM }} | |
| KEYCLOAK_LOCAL_API_CLIENTID=${{ secrets.KEYCLOAK_LOCAL_API_CLIENTID }} | |
| KEYCLOAK_LOCAL_FE_CLIENTID=${{ secrets.KEYCLOAK_LOCAL_FE_CLIENTID }} | |
| EOF | |
| - name: Build and Run | |
| run: make local-kc-run | |
| - name: Jest run | |
| run: make local-server-tests |