fix(security): encode redirect_uri, limit state payload, fix iframe timeout #142
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: Integration Tests | |
| on: [push, pull_request] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 60 | |
| services: | |
| docker: | |
| image: docker:dind | |
| options: --privileged | |
| ports: | |
| - 8080:8080 | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v3 | |
| - name: Set up Docker | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: "18" # Specify your Node.js version here | |
| - name: Set up pnpm | |
| run: | | |
| corepack enable | |
| corepack prepare pnpm --activate | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: Run integration tests | |
| run: pnpm test # Make sure this command runs your integration tests |