chore(deps): bump @nestjs/platform-fastify from 10.2.9 to 10.2.10 #404
Workflow file for this run
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 | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [ 16, 18, 20 ] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/[email protected] | |
with: | |
version: 8 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: test | |
run: pnpm i --no-frozen-lockfile && pnpm run test && pnpm run test:e2e | |
coverage: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [ 16, 18, 20 ] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/[email protected] | |
with: | |
version: 8 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: install dependent | |
run: pnpm i --no-frozen-lockfile | |
- name: run test cov | |
run: pnpm run test:cov | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 |