Skip to content

build(deps-dev): Bump nodemon from 3.1.2 to 3.1.4 #301

build(deps-dev): Bump nodemon from 3.1.2 to 3.1.4

build(deps-dev): Bump nodemon from 3.1.2 to 3.1.4 #301

Workflow file for this run

name: Node.js CI Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 16.x, 18.x, 19.x ]
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Run tests and check coverage
run: npm run cover:check
- name: Report the results to Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}