Skip to content

Commit

Permalink
Merge pull request #27 from crt25/feature/CRT-20_CRT-21_sessions
Browse files Browse the repository at this point in the history
[CRT-20] [CRT-21] Add session join logic (+parts of authentication)
  • Loading branch information
Tyratox authored Oct 28, 2024
2 parents 295af12 + 489192c commit 2400766
Show file tree
Hide file tree
Showing 88 changed files with 14,381 additions and 1,720 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,22 @@ jobs:
working-directory: ./frontend
run: yarn test:cov

- name: Start storybook
working-directory: ./frontend
run: yarn storybook & PID=$!; echo $PID > storybook.pid

- name: Wait for storybook to be accessible
working-directory: ./frontend
run: yarn storybook:await

- name: Run storybook tests
working-directory: ./frontend
run: yarn test:storybook

- name: Stop storybook
working-directory: ./frontend
run: kill $(cat storybook.pid)

- name: Test scratch app
working-directory: ./apps/scratch
run: yarn test
Expand Down
1 change: 1 addition & 0 deletions docs/_sidebar.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
- Collimator

- [Home](/)
- [Student Identity Management](identity-management/student.md)

- Data Collector

Expand Down
Loading

0 comments on commit 2400766

Please sign in to comment.