Skip to content

Update integration.yml #58

Update integration.yml

Update integration.yml #58

Workflow file for this run

name: Integration Tests
on:
# merge_group:
workflow_dispatch:
pull_request:
branches:
- main
# push:
# branches:
# - main
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
env:
NODE_VERSION: 18
# Mock user credentials for Cypress tests
CYPRESS_USER_EMAIL: [email protected]
CYPRESS_USER_PASSWORD: mockpassword
jobs:
test-examples:
name: Run example tests
runs-on: ubuntu-latest
env:
SKIP_PREFLIGHT_CHECK: true
REACT_APP_DOMAIN: your-tenant.auth0.com
REACT_APP_CLIENT_ID: yourclientid
REACT_APP_AUDIENCE: https://api.example.com/users
REACT_APP_API_PORT: 3001
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install examples
run: npm run install:examples
- name: Run integration test
run: npm run test:integration