Skip to content

1.1.5

1.1.5 #34

Workflow file for this run

name: CI
on: [pull_request, push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
steps:
- name: Checkout
uses: actions/[email protected]
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/[email protected]
with:
cache: npm
node-version: ${{ matrix.node-version }}
registry-url: 'https://registry.npmjs.org'
- name: Install
run: npm install -g npm@9 && npm ci
- name: Lint
run: npm run lint
- name: Test
run: npm run coverage
- name: Report coverage
uses: codecov/[email protected]