Skip to content

guard() - better reply on 0 stdout/stderr output #63

guard() - better reply on 0 stdout/stderr output

guard() - better reply on 0 stdout/stderr output #63

Workflow file for this run

name: Node.js CI
on:
push:
branches:
- master
- "test*"
tags:
- "**"
pull_request:
branches: [master]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: npm i lint # yes, just `npm install`, no `npm ci` <-> no package-lock.json
- run: npm run lint
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 16.x, 19.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: npm i (yes, just install, no package-lock.json)
run: npm i
- run: npm test