Skip to content

Bump 1.6.1

Bump 1.6.1 #357

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [macos-latest, ubuntu-latest]
node-version: [12, 13, 14, 16, 18]
name: Node.js ${{ matrix.node-version }} Test on ${{ matrix.operating-system }}
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run ci
- uses: codecov/codecov-action@v3
with:
name: codecov-node-cli # optional
fail_ci_if_error: true # optional (default = false)
verbose: true # optional (default = false)