Skip to content

remove default param for getOptions, bumps branches coverage #118

remove default param for getOptions, bumps branches coverage

remove default param for getOptions, bumps branches coverage #118

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: install dependencies
run: npm ci
- name: build
run: npm run build
- name: check codestyle
run: npm run lint
- name: tests
run: npm run test
- name: Coveralls GitHub Action
uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}