Chore/update project dependencies #45
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: Quality gate | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| - dev | |
| jobs: | |
| quality-gate: | |
| name: Check code | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/[email protected] | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v2 | |
| with: | |
| node-version: "22" | |
| - name: Install dependencies | |
| run: npm ci --fund=false --audit=false | |
| - name: Unit tests | |
| run: npm run test -- --watch=false | |
| - name: Code linter | |
| run: npm run lint | |
| - name: Check code formatting | |
| run: npm run format:check |