Skip to content

6.10.6

6.10.6 #653

Workflow file for this run

name: Testing and linting
on:
pull_request:
paths-ignore:
- '**.md'
push:
branches:
- main
paths-ignore:
- '**.md'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test
- name: Coveralls
uses: coverallsapp/[email protected]
with:
path-to-lcov: "./tests/unit/coverage/lcov.info"
github-token: ${{ secrets.GITHUB_TOKEN }}