Add suspense boundary #475
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: Unit tests | |
| on: | |
| - push | |
| jobs: | |
| prettier: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: '20' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Check formatting with Prettier | |
| run: npx prettier --check ./src | |
| test: | |
| runs-on: ubuntu-latest | |
| needs: prettier | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - run: docker compose -f docker-compose.test.yaml run --rm web_tests | |
| - run: docker compose -f docker-compose.test.yaml run --rm symapi pytest |