Merge pull request #1035 from supertokens/feat/saml/impl #822
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: "Test edge function compatibility for Hono on Cloudflare Workers" | |
| on: push | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| env: | |
| CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
| CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} | |
| APP_URL: "https://hono.rishabh-77b.workers.dev" | |
| CLOUDFLARE_PROJECT_NAME: "hono" | |
| TEST_DEPLOYED_VERSION: true | |
| defaults: | |
| run: | |
| working-directory: examples/cloudflare-workers/with-email-password-hono-be-only | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: echo $GITHUB_SHA | |
| - run: npm install git+https://github.com:supertokens/supertokens-node.git#$GITHUB_SHA | |
| - run: npm install | |
| - run: npm install [email protected] [email protected] puppeteer@^11.0.0 isomorphic-fetch@^3.0.0 | |
| - name: Replace APP_URL with deployed URL value | |
| run: | | |
| sed -i "s|process.env.REACT_APP_API_URL|\"${{ env.APP_URL }}\"|" config.ts | |
| sed -i "s|process.env.REACT_APP_WEBSITE_URL|\"${{ env.APP_URL }}\"|" config.ts | |
| - name: Deploy the changes | |
| run: npx wrangler deploy --name ${{ env.CLOUDFLARE_PROJECT_NAME }} index.ts | |
| - name: Run tests | |
| run: | | |
| ( \ | |
| (echo "=========== Test attempt 1 ===========" && npx mocha --no-config --timeout 80000 test/**/*.test.js) || \ | |
| (echo "=========== Test attempt 2 ===========" && npx mocha --no-config --timeout 80000 test/**/*.test.js) || \ | |
| (echo "=========== Test attempt 3 ===========" && npx mocha --no-config --timeout 80000 test/**/*.test.js) \ | |
| ) | |
| - name: The job has failed | |
| if: ${{ failure() }} | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: screenshots | |
| path: | | |
| ./**/*screenshot.jpeg |