File tree Expand file tree Collapse file tree 5 files changed +2260
-2261
lines changed Expand file tree Collapse file tree 5 files changed +2260
-2261
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+ on : [push, pull_request]
3+ jobs :
4+ build :
5+ runs-on : ubuntu-latest
6+ strategy :
7+ matrix :
8+ node-version : [10.x, 12.x, 13.x]
9+ steps :
10+ - uses : actions/checkout@v2
11+ - name : Use Node.js ${{ matrix.node-version }}
12+ uses : actions/setup-node@v1
13+ with :
14+ node-version : ${{ matrix.node-version }}
15+ - run : npm ci
16+ - run : npm test
17+ env :
18+ CI : true
Original file line number Diff line number Diff line change 1+ on :
2+ schedule :
3+ - cron : ' 0 0 * * 1'
4+ name : Update packages
5+ jobs :
6+ release :
7+ name : Update npm packages
8+ runs-on : ubuntu-latest
9+ steps :
10+ - name : Update npm packages
11+ uses : technote-space/create-pr-action@v2.0.3
12+ with :
13+ EXECUTE_COMMANDS : |
14+ npm install
15+ npm run update-dependencies
16+ npm run clean
17+ npm install
18+ COMMIT_MESSAGE : ' chore(dependencies): Update all dependencies'
19+ COMMIT_NAME : ' GitHub Actions'
20+ COMMIT_EMAIL : ' daff@neyeon.com'
21+ PR_BRANCH_NAME : ' chore-npm-update-${PR_ID}'
22+ PR_TITLE : ' chore(dependencies): Update all dependencies'
Original file line number Diff line number Diff line change 11## feathers-hooks-common
22
3- [ ![ Greenkeeper badge] ( https://badges.greenkeeper.io/feathersjs-ecosystem/feathers-hooks-common.svg )] ( https://greenkeeper.io/ )
4-
5- [ ![ Build Status] ( https://travis-ci.org/feathersjs-ecosystem/feathers-hooks-common.svg?branch=master )] ( https://travis-ci.org/feathersjs-ecosystem/feathers-hooks-common )
3+ [ ![ CI] ( https://github.com/feathersjs-ecosystem/feathers-hooks-common/workflows/CI/badge.svg )] ( https://github.com/feathersjs-ecosystem/feathers-hooks-common/actions?query=workflow%3ACI )
64[ ![ Dependency Status] ( https://img.shields.io/david/feathersjs/feathers.svg?style=flat-square )] ( https://david-dm.org/feathersjs/feathers-hooks-common )
75[ ![ Download Status] ( https://img.shields.io/npm/dm/feathers.svg?style=flat-square )] ( https://www.npmjs.com/package/feathers-hooks-common )
86[ ![ Slack Status] ( http://slack.feathersjs.com/badge.svg )] ( http://slack.feathersjs.com )
You can’t perform that action at this time.
0 commit comments