diff --git a/.github/workflows/auth-tests.yml b/.github/workflows/auth-tests.yml deleted file mode 100644 index 07028db47..000000000 --- a/.github/workflows/auth-tests.yml +++ /dev/null @@ -1,79 +0,0 @@ -name: Auth Tests -on: - push: - branches: [main] - pull_request: - branches: [main] - -jobs: - oauth1-tests-for-linux: - name: OAuth 1.0 Auth Tests - Linux - timeout-minutes: 60 - runs-on: ubuntu-latest - permissions: - checks: write - pull-requests: write - contents: read - steps: - - uses: actions/checkout@v6 - - - name: Setup Node Dependencies - uses: ./.github/actions/common/setup-node-deps - - - name: Setup Feature Dependencies - uses: ./.github/actions/auth/oauth1/linux/setup-feature-specific-deps - - - name: Run Auth E2E Tests - uses: ./.github/actions/auth/oauth1/linux/run-auth-e2e-tests - - - name: Start Test Server - uses: ./.github/actions/auth/oauth1/linux/start-test-server - - - name: Run OAuth1 CLI Tests - uses: ./.github/actions/auth/oauth1/linux/run-oauth1-cli-tests - - oauth1-tests-for-macos: - name: OAuth 1.0 Auth Tests - macOS - timeout-minutes: 60 - runs-on: macos-latest - permissions: - checks: write - pull-requests: write - contents: read - steps: - - uses: actions/checkout@v6 - - - name: Setup Node Dependencies - uses: ./.github/actions/common/setup-node-deps - - - name: Run Auth E2E Tests - uses: ./.github/actions/auth/oauth1/macos/run-auth-e2e-tests - - - name: Start Test Server - uses: ./.github/actions/auth/oauth1/macos/start-test-server - - - name: Run OAuth1 CLI Tests - uses: ./.github/actions/auth/oauth1/macos/run-oauth1-cli-tests - - oauth1-tests-for-windows: - name: OAuth 1.0 Auth Tests - Windows - timeout-minutes: 60 - runs-on: windows-latest - permissions: - checks: write - pull-requests: write - contents: read - steps: - - uses: actions/checkout@v6 - - - name: Setup Node Dependencies - uses: ./.github/actions/common/setup-node-deps - - - name: Run Auth E2E Tests - uses: ./.github/actions/auth/oauth1/windows/run-auth-e2e-tests - - - name: Start Test Server - uses: ./.github/actions/auth/oauth1/windows/start-test-server - - - name: Run OAuth1 CLI Tests - uses: ./.github/actions/auth/oauth1/windows/run-oauth1-cli-tests diff --git a/.github/workflows/tests-linux.yml b/.github/workflows/tests-linux.yml index 31183dd10..b7a0ff3e4 100644 --- a/.github/workflows/tests-linux.yml +++ b/.github/workflows/tests-linux.yml @@ -109,4 +109,30 @@ jobs: uses: ./.github/actions/ssl/linux/run-custom-ca-certs-cli-tests - name: Run Custom CA Certs E2E Tests - uses: ./.github/actions/ssl/linux/run-ssl-e2e-tests \ No newline at end of file + uses: ./.github/actions/ssl/linux/run-ssl-e2e-tests + + oauth1-tests: + name: OAuth 1.0 Auth Tests (Linux) + timeout-minutes: 60 + runs-on: ubuntu-latest + permissions: + checks: write + pull-requests: write + contents: read + steps: + - uses: actions/checkout@v6 + + - name: Setup Node Dependencies + uses: ./.github/actions/common/setup-node-deps + + - name: Setup Feature Dependencies + uses: ./.github/actions/auth/oauth1/linux/setup-feature-specific-deps + + - name: Run Auth E2E Tests + uses: ./.github/actions/auth/oauth1/linux/run-auth-e2e-tests + + - name: Start Test Server + uses: ./.github/actions/auth/oauth1/linux/start-test-server + + - name: Run OAuth1 CLI Tests + uses: ./.github/actions/auth/oauth1/linux/run-oauth1-cli-tests \ No newline at end of file diff --git a/.github/workflows/tests-macos.yml b/.github/workflows/tests-macos.yml index aa40b5ec7..143d47480 100644 --- a/.github/workflows/tests-macos.yml +++ b/.github/workflows/tests-macos.yml @@ -97,4 +97,27 @@ jobs: uses: ./.github/actions/ssl/macos/run-custom-ca-certs-cli-tests - name: Run Custom CA Certs E2E Tests - uses: ./.github/actions/ssl/macos/run-ssl-e2e-tests \ No newline at end of file + uses: ./.github/actions/ssl/macos/run-ssl-e2e-tests + + oauth1-tests: + name: OAuth 1.0 Auth Tests (macOS) + timeout-minutes: 60 + runs-on: macos-latest + permissions: + checks: write + pull-requests: write + contents: read + steps: + - uses: actions/checkout@v6 + + - name: Setup Node Dependencies + uses: ./.github/actions/common/setup-node-deps + + - name: Run Auth E2E Tests + uses: ./.github/actions/auth/oauth1/macos/run-auth-e2e-tests + + - name: Start Test Server + uses: ./.github/actions/auth/oauth1/macos/start-test-server + + - name: Run OAuth1 CLI Tests + uses: ./.github/actions/auth/oauth1/macos/run-oauth1-cli-tests \ No newline at end of file diff --git a/.github/workflows/tests-windows.yml b/.github/workflows/tests-windows.yml index f840a5d27..69862de97 100644 --- a/.github/workflows/tests-windows.yml +++ b/.github/workflows/tests-windows.yml @@ -9,6 +9,7 @@ on: jobs: unit-test: name: Unit Tests (Windows) + if: false # @TODO: Temporarily disabled. Remove this once the tests are fixed. timeout-minutes: 60 runs-on: windows-latest permissions: @@ -108,3 +109,26 @@ jobs: - name: Run Custom CA Certs E2E Tests uses: ./.github/actions/ssl/windows/run-ssl-e2e-tests + + oauth1-tests: + name: OAuth 1.0 Auth Tests (Windows) + timeout-minutes: 60 + runs-on: windows-latest + permissions: + checks: write + pull-requests: write + contents: read + steps: + - uses: actions/checkout@v6 + + - name: Setup Node Dependencies + uses: ./.github/actions/common/setup-node-deps + + - name: Run Auth E2E Tests + uses: ./.github/actions/auth/oauth1/windows/run-auth-e2e-tests + + - name: Start Test Server + uses: ./.github/actions/auth/oauth1/windows/start-test-server + + - name: Run OAuth1 CLI Tests + uses: ./.github/actions/auth/oauth1/windows/run-oauth1-cli-tests