Skip to content

chore(deps-dev): bump nanoid from 3.1.16 to 3.1.31 in /bench #27

chore(deps-dev): bump nanoid from 3.1.16 to 3.1.31 in /bench

chore(deps-dev): bump nanoid from 3.1.16 to 3.1.31 in /bench #27

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
name: Node.js v${{ matrix.nodejs }}
runs-on: ubuntu-latest
strategy:
matrix:
nodejs: [8, 10, 12, 18]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.nodejs }}
- name: Install
run: npm install
- name: Test
if: matrix.nodejs < 18
run: npm test
- name: Test w/ Coverage
if: matrix.nodejs >= 18
run: |
npm install -g c8
c8 --include=src npm test
- name: Report
if: matrix.nodejs >= 18
run: |
c8 report --reporter=text-lcov > coverage.lcov
bash <(curl -s https://codecov.io/bash)
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}