src: add and delete file webhooks when designs are attached or removed #653
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
| on: [pull_request] | |
| jobs: | |
| verify-app: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3 | |
| - name: Setup node | |
| uses: actions/setup-node@bea5baf987ba7aa777a8a0b4ace377a21c45c381 # v3 | |
| with: | |
| node-version: '24' | |
| cache: 'npm' | |
| - name: Install | |
| run: npm ci | |
| - name: Build the app | |
| run: npm run build | |
| - name: Check lint errors | |
| run: npm run lint | |
| - name: Check formatting errors | |
| run: npm run format:check | |
| - name: Run unit tests | |
| run: npm run test:unit | |
| - name: Run unit tests for the admin app | |
| run: npm run admin:test | |
| - name: Run integration tests | |
| run: npm run test:it:ci | |
| - name: Build Docker image | |
| run: docker build . |