[Snyk] Security upgrade @nestjs/platform-fastify from 8.0.1 to 9.0.0 #28
This file contains 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: ci workflows | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [master, main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [14.x] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Use ${{matrix.node-version}} nodejs version | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm ci | |
- name: Run linter | |
run: npm run lint | |
- name: Check typescript | |
run: npm run type-check | |
- name: Run unit test | |
run: npm test | |
- run: npm run build --if-present |