Skip to content

Switch to Node.js v20, update dependencies #17

Switch to Node.js v20, update dependencies

Switch to Node.js v20, update dependencies #17

Workflow file for this run

name: NestJS Boilerplate
on: [push]
jobs:
build:
runs-on: ubuntu-latest
name: Build and test
strategy:
matrix:
node-version: [ 20 ]
steps:
- uses: actions/checkout@v2
- run: npm i
- run: npm run lint
- run: npm run build
- run: npm run test