Skip to content

Commit

Permalink
Merge 079dae6 into 29a9077
Browse files Browse the repository at this point in the history
  • Loading branch information
peter-evans committed Jun 14, 2020
2 parents 29a9077 + 079dae6 commit c0c6d90
Show file tree
Hide file tree
Showing 6 changed files with 59 additions and 20 deletions.
1 change: 0 additions & 1 deletion .github/CODEOWNERS

This file was deleted.

27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: CI
on:
push:
branches: [master]
paths-ignore:
- 'README.md'
- 'docs/**'
pull_request:
branches: [master]
paths-ignore:
- 'README.md'
- 'docs/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12.x
- run: npm ci
- run: npm run test
- run: npm run mutate
- run: npm run coverage
- uses: coverallsapp/github-action@v1.1.1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
31 changes: 31 additions & 0 deletions .github/workflows/update-dep.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Update Dependencies
on:
schedule:
- cron: '0 1 * * 4'
jobs:
update-dep:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '12.x'
- name: Update dependencies
run: |
npx -p npm-check-updates ncu -u
npm install
- name: Create Pull Request
uses: peter-evans/create-pull-request@v2
with:
token: ${{ secrets.ACTIONS_BOT_TOKEN }}
commit-message: Update dependencies
committer: GitHub <noreply@github.com>
author: actions-bot <actions-bot@users.noreply.github.com>
title: Update dependencies
body: |
- Dependency updates
Auto-generated by [create-pull-request][1]

[1]: https://github.com/peter-evans/create-pull-request
branch: update-dependencies
13 changes: 0 additions & 13 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"scripts": {
"test": "nyc mocha --reporter nyan",
"mutate": "./node_modules/.bin/stryker run",
"coverage": "nyc report --reporter=text-lcov | coveralls"
"coverage": "nyc report --reporter=lcov"
},
"repository": {
"type": "git",
Expand Down
5 changes: 0 additions & 5 deletions renovate.json

This file was deleted.

0 comments on commit c0c6d90

Please sign in to comment.