Skip to content

build(deps): bump express and @nestjs/platform-express #9

build(deps): bump express and @nestjs/platform-express

build(deps): bump express and @nestjs/platform-express #9

Workflow file for this run

name: "NodeJS Tests"
on:
push:
branches:
- master
pull_request:
branches: ['*']
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install, build, and test
run: |
npm ci
npm run build
npm run test:cov
npm run test:e2e
env:
CI: true
- name: Publish
run: bash <(curl -s https://codecov.io/bash)
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}