Update dependency @nestjs/platform-fastify to v11.1.14 [SECURITY] #2670
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: Pipeline | |
| on: | |
| - pull_request | |
| jobs: | |
| eslint: | |
| runs-on: self-hosted | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: '24.x' | |
| registry-url: 'https://registry.npmjs.org' | |
| - run: npx yarn install --frozen-lockfile | |
| - run: npx yarn lint:check | |
| test: | |
| runs-on: self-hosted | |
| needs: | |
| - eslint | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: '24.x' | |
| registry-url: 'https://registry.npmjs.org' | |
| - run: npx yarn install --frozen-lockfile | |
| - run: npx yarn test |