chore(deps): update dependency @types/express to v5 #4574
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, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x, 20.x, 21.x] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- name: Set up Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: npm install | |
- name: Check types | |
run: npm run typecheck | |
- name: Run the tests | |
run: npm run test:coverage | |
- name: Build | |
run: npm run build | |
- name: Test that works on esm-vitest-express | |
run: bash test/e2e/esm-vitest-express/run.sh | |
- name: Test that works on esm-node-express | |
run: bash test/e2e/esm-node-express/run.sh | |
- name: Test that works on nestjs | |
run: bash test/e2e/nestjs/run.sh | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v4 |