File tree Expand file tree Collapse file tree 3 files changed +28
-37
lines changed Expand file tree Collapse file tree 3 files changed +28
-37
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ ---
2+ name : CI
3+ on : [push, pull_request]
4+ jobs :
5+ build :
6+ runs-on : ubuntu-latest
7+ steps :
8+ - name : Checkout
9+ uses : actions/checkout@v1
10+ - name : Use Node.js LTS
11+ uses : actions/setup-node@v1
12+ with :
13+ node-version : 12.x
14+ - name : Restore cached dependencies
15+ uses : actions/cache@v1
16+ with :
17+ path : node_modules
18+ key : node-modules-${{ hashFiles('**/package-lock.json') }}
19+ - name : Install dependencies
20+ run : npm install
21+ - name : Run Tests
22+ run : npm run ci
23+ - name : Upload coverage to Codecov
24+ uses : codecov/codecov-action@v1
25+ with :
26+ file : ./coverage/coverage-final.json
27+ token : ${{ secrets.CODECOV_TOKEN }}
Original file line number Diff line number Diff line change 22
33[ ![ Package Version] ( https://img.shields.io/npm/v/fastify-errors-properties.svg )] ( https://npm.im/fastify-errors-properties )
44[ ![ Dependency Status] ( https://img.shields.io/david/ShogunPanda/fastify-errors-properties )] ( https://david-dm.org/ShogunPanda/fastify-errors-properties )
5- [ ![ Build] ( https://img.shields.io/circleci/build/gh/ ShogunPanda/fastify-errors-properties?token=a721161f936393ce2826774e8b89c0785c06967b )] ( https://circleci .com/gh/ ShogunPanda/fastify-errors-properties )
5+ [ ![ Build] ( https://github.com/ ShogunPanda/fastify-errors-properties/workflows/CI/badge.svg )] ( https://github .com/ShogunPanda/fastify-errors-properties/actions?query=workflow%3ACI )
66[ ![ Code Coverage] ( https://img.shields.io/codecov/c/gh/ShogunPanda/fastify-errors-properties?token=d0ae1643f35c4c4f9714a357f796d05d )] ( https://codecov.io/gh/ShogunPanda/fastify-errors-properties )
77
88A error handling plugin for Fastify that enables additional properties in errors.
You can’t perform that action at this time.
0 commit comments