enhance(apps/frontend-pwa): improve styling of student application, including sticky live quiz progress and submission #2279
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Test graphql package logic functionalities | |
| on: | |
| push: | |
| branches: ['v3', 'v3*'] | |
| paths: | |
| - 'packages/graphql/**' | |
| - '.github/workflows/test-graphql.yml' | |
| pull_request: | |
| branches: ['v3', 'v3*'] | |
| types: [opened, synchronize, reopened, ready_for_review] | |
| jobs: | |
| test: | |
| if: github.event.pull_request.draft == false | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| packages: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v3 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - uses: pnpm/action-setup@v2 | |
| with: | |
| version: 9.15.4 | |
| run_install: true | |
| - name: Run tests using Docker | |
| run: | | |
| cd packages/prisma | |
| pnpm run build | |
| cd ../types | |
| pnpm run build | |
| cd ../util | |
| pnpm run build | |
| cd ../grading | |
| pnpm run build | |
| cd ../graphql | |
| pnpm run test |