Skip to content

Bump pify from 6.0.0 to 6.1.0 #1504

Bump pify from 6.0.0 to 6.1.0

Bump pify from 6.0.0 to 6.1.0 #1504

Workflow file for this run

name: Node.js CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, latest]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: NPM Install & lerna Bootstrap
run: npm ci
- name: Lint
run: npm run lint
- name: Build
run: npm run build
- name: Test
if: ${{ matrix.node-version != 'latest' || github.ref_name != 'master' }}
run: npm test
- name: Test & Report coverage
if: ${{ matrix.node-version == 'latest' && github.ref_name == 'master' }}
run: npm run report