Consolidate icons & improve UI #2628
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: Pull Request Validation Workflow | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| types: [opened, labeled, synchronize, ready_for_review] | |
| jobs: | |
| backend-checks: | |
| name: Backend Checks | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [22.x.x] | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v2 | |
| with: | |
| persist-credentials: false | |
| - name: Setup NodeJS ${{ matrix.node-version }} | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Install Backend Dependencies | |
| run: npm install --force | |
| working-directory: backend | |
| - name: Backend Lint Validation | |
| run: npm run lint | |
| working-directory: backend | |
| - name: Backend Code Formatting Validation | |
| run: npm run format:check | |
| working-directory: backend | |
| - name: Backend TypeScript Validation | |
| run: npm run lint:tsc | |
| working-directory: backend | |
| - name: Backend Knip Validation | |
| run: npm run knip | |
| working-directory: backend | |
| web-checks: | |
| name: Web Checks | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [22.x.x] | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v2 | |
| with: | |
| persist-credentials: false | |
| - name: Setup NodeJS ${{ matrix.node-version }} | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Install Web Dependencies | |
| run: npm install --force | |
| working-directory: web | |
| - name: Web Lint Validation | |
| run: npm run lint | |
| working-directory: web | |
| - name: Web Code Formatting Validation | |
| run: npm run format:check | |
| working-directory: web | |
| - name: Web TypeScript Validation | |
| run: npm run typecheck | |
| working-directory: web | |
| - name: Web Knip Validation | |
| run: npm run knip | |
| working-directory: web | |
| docs-checks: | |
| name: Documentation Checks | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [22.x.x] | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v2 | |
| with: | |
| persist-credentials: false | |
| - name: Setup NodeJS ${{ matrix.node-version }} | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Install Documentation Dependencies | |
| run: npm install --force | |
| working-directory: docs | |
| - name: Documentation Code Formatting Validation | |
| run: npm run format:check | |
| working-directory: docs |