Skip to content

Commit

Permalink
Split
Browse files Browse the repository at this point in the history
  • Loading branch information
frederikprijck committed Nov 9, 2023
1 parent f1d19a8 commit 7b2e9c6
Show file tree
Hide file tree
Showing 2 changed files with 67 additions and 42 deletions.
65 changes: 65 additions & 0 deletions .github/workflows/e2e-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
name: E2E Test

on:
merge_group:
workflow_dispatch:
pull_request:
branches:
- main
push:
branches:
- main
- chore/github-actions

permissions:
contents: read

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}

env:
NODE_VERSION: 18
CACHE_KEY: '${{ github.ref }}-${{ github.run_id }}-${{ github.run_attempt }}'

jobs:
sample-01:
name: E2E Test Sample
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha || github.ref }}

- run: git clone https://github.com/auth0-samples/spa-quickstarts-tests scripts

- name: E2E Test Sample
uses: ./.github/actions/test
with:
working-directory: Sample-01
domain: ${{ secrets.AUTH0_TEST_DOMAIN }}
client-id: ${{ secrets.AUTH0_TEST_CLIENT_ID }}
api-identifier: ${{ secrets.AUTH0_TEST_API_IDENTIFIER }}

standalone:
name: E2E Test Standalone
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha || github.ref }}

- run: git clone https://github.com/auth0-samples/spa-quickstarts-tests scripts

- name: E2E Test Standalone
uses: ./.github/actions/test
with:
working-directory: Standalone
domain: ${{ secrets.AUTH0_TEST_DOMAIN }}
client-id: ${{ secrets.AUTH0_TEST_CLIENT_ID }}
api-identifier: ${{ secrets.AUTH0_TEST_API_IDENTIFIER }}

44 changes: 2 additions & 42 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build
name: Build and Test

on:
merge_group:
Expand Down Expand Up @@ -54,44 +54,4 @@ jobs:
- name: Build Standalone
uses: ./.github/actions/build
with:
working-directory: Standalone
e2e-sample-01:
name: E2E Test Sample
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha || github.ref }}

- run: git clone https://github.com/auth0-samples/spa-quickstarts-tests scripts

- name: E2E Test Sample
uses: ./.github/actions/test
with:
working-directory: Sample-01
domain: ${{ secrets.AUTH0_TEST_DOMAIN }}
client-id: ${{ secrets.AUTH0_TEST_CLIENT_ID }}
api-identifier: ${{ secrets.AUTH0_TEST_API_IDENTIFIER }}

e2e-standalone:
name: E2E Test Standalone
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha || github.ref }}

- run: git clone https://github.com/auth0-samples/spa-quickstarts-tests scripts

- name: E2E Test Standalone
uses: ./.github/actions/test
with:
working-directory: Standalone
domain: ${{ secrets.AUTH0_TEST_DOMAIN }}
client-id: ${{ secrets.AUTH0_TEST_CLIENT_ID }}
api-identifier: ${{ secrets.AUTH0_TEST_API_IDENTIFIER }}

working-directory: Standalone

0 comments on commit 7b2e9c6

Please sign in to comment.