Skip to content

Make niceDate month start at 1 #203

Make niceDate month start at 1

Make niceDate month start at 1 #203

Workflow file for this run

name: Test & Coverage
on: [push, pull_request]
jobs:
uvu-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Dependencies
run: |
npm i
npm i -g c8
- name: Tests & Coverage
run: c8 --all --include 'lib/*/*/index.js' npm test
- name: Report
run: |
c8 --all --include 'lib/*/*/index.js' report --reporter=text-lcov > coverage.lcov
bash <(curl -s https://codecov.io/bash)
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}