Skip to content

chore(deps-dev): bump c8 from 8.0.0 to 8.0.1 (#156) #426

chore(deps-dev): bump c8 from 8.0.0 to 8.0.1 (#156)

chore(deps-dev): bump c8 from 8.0.0 to 8.0.1 (#156) #426

Workflow file for this run

name: test
on:
push:
branches:
- master
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 16.x
- 18.x
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- uses: browser-actions/setup-firefox@latest
- name: Install dependencies
uses: bahmutov/npm-install@v1
- name: Lint
run: npm run lint
- name: Test
run: npm run cover
- name: Install lcov
run: |
sudo apt update
sudo apt install lcov
- name: Merge lcov reports
run: find coverage -name lcov.info -exec echo -a \"{}\" \; | xargs lcov -o coverage/lcov.info
- name: Publish to coveralls.io
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}