Skip to content

Commit 07574d6

Browse files
mcollinaEomm
andauthored
Update automation (#8)
* Use dependabot and Github Actions instead of everything else * Update badge * Update README.md Co-Authored-By: Manuel Spigolon <behemoth89@gmail.com> Co-authored-by: Manuel Spigolon <behemoth89@gmail.com>
1 parent cad54ee commit 07574d6

File tree

6 files changed

+28
-48
lines changed

6 files changed

+28
-48
lines changed

.dependabot/config.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
version: 1
2+
update_configs:
3+
- package_manager: "javascript"
4+
directory: "/"
5+
update_schedule: "daily"
6+
ignored_updates:
7+
- match:
8+
dependency_name: "tap"

.github/workflows/ci.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: CI workflow
2+
on: [push, pull_request]
3+
jobs:
4+
test:
5+
runs-on: ubuntu-latest
6+
strategy:
7+
matrix:
8+
node-version: [6.x, 8.x, 10.x, 11.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+
- name: Install Dependencies
16+
run: npm install --ignore-scripts
17+
- name: Test
18+
run: npm run test

.travis.yml

Lines changed: 0 additions & 17 deletions
This file was deleted.

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# secure-json-parse
22

3-
[![Build Status](https://dev.azure.com/fastify/fastify/_apis/build/status/fastify.secure-json-parse?branchName=master)](https://dev.azure.com/fastify/fastify/_build/latest?definitionId=8&branchName=master) [![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat)](http://standardjs.com/) [![Greenkeeper badge](https://badges.greenkeeper.io/fastify/secure-json-parse.svg)](https://greenkeeper.io/)
3+
![Ci Workflow](https://github.com/fastify/secure-json-parse/workflows/CI%20workflow/badge.svg)
4+
[![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat)](http://standardjs.com/)
45

56
`JSON.parse()` drop-in replacement with prototype poisoning protection.
67

azure-pipelines.yml

Lines changed: 0 additions & 25 deletions
This file was deleted.

package.json

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,5 @@
2626
"devDependencies": {
2727
"standard": "^14.3.1",
2828
"tap": "^12.7.0"
29-
},
30-
"greenkeeper": {
31-
"ignore": [
32-
"tap"
33-
]
3429
}
3530
}

0 commit comments

Comments
 (0)