Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 35 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name: Test
on: [push, pull_request]

jobs:
build:
name: build (Python ${{ matrix.python-version }}, Django ${{ matrix.django-version }})
test-package:
name: Test Package (Python ${{ matrix.python-version }}, Django ${{ matrix.django-version }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand Down Expand Up @@ -84,8 +84,40 @@ jobs:
with:
name: Python ${{ matrix.python-version }}

test-demo-rp:
name: Test Demo Relying Party
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version:
- "18.x"
- "20.x"
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Set up NodeJS
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}

- name: Install dependencies
run: npm install
working-directory: tests/app/rp

- name: Run Lint
run: npm run lint
working-directory: tests/app/rp

- name: Run build
run: npm run build
working-directory: tests/app/rp

success:
needs: build
needs:
- test-package
- test-demo-rp
runs-on: ubuntu-latest
name: Test successful
steps:
Expand Down
Loading