Bump path-to-regexp, @nestjs/core, @nestjs/platform-express and @nestjs/swagger #10
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: Integration | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- main | |
- dev | |
jobs: | |
integration: | |
name: Integration | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.9.0 | |
- name: Install packages | |
run: | | |
npm install | |
- name: Run lint | |
run: | | |
npm run lint:check | |
- name: Run unit tests with coverage | |
run: | | |
npm run test:cov | |
- name: Run build | |
run: | | |
npm run build | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v4 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |