Skip to content

Commit 60fc9a6

Browse files
authored
Move to GitHub actions and update all dependencies (#591)
1 parent cfd1868 commit 60fc9a6

File tree

5 files changed

+2260
-2261
lines changed

5 files changed

+2260
-2261
lines changed

.github/workflows/nodejs.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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/[email protected]
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: '[email protected]'
21+
PR_BRANCH_NAME: 'chore-npm-update-${PR_ID}'
22+
PR_TITLE: 'chore(dependencies): Update all dependencies'

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
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)

0 commit comments

Comments
 (0)