Skip to content

docs(license): update copyright year(s) (#42) #101

docs(license): update copyright year(s) (#42)

docs(license): update copyright year(s) (#42) #101

Workflow file for this run

name: CI
on:
push:
branches:
- master
tags:
- v*
pull_request:
workflow_dispatch:
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 14.x
- 16.x
steps:
- uses: actions/checkout@v2
- name: Use NodeJS v${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: npm ci
- name: Test
run: npm test
- name: Coverage
uses: coverallsapp/github-action@1.1.3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./tests/coverage/lcov.info