Skip to content

Commit 6a6cdc6

Browse files
committed
Merge branches 'ci-install-scripts', 'node-versions-in-ci' and 'tape' into browsers
4 parents e7bed7e + 079ca49 + df1c6ed + f190b73 commit 6a6cdc6

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.dependabot/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ update_configs:
55
update_schedule: "daily"
66
ignored_updates:
77
- match:
8-
dependency_name: "tap"
8+
dependency_name: "tape"

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ jobs:
55
runs-on: ubuntu-latest
66
strategy:
77
matrix:
8-
node-version: [6.x, 8.x, 10.x, 11.x, 12.x, 13.x]
8+
node-version: [10.x, 12.x, 14.x, 15.x]
99
steps:
1010
- uses: actions/checkout@v2
1111
- name: Use Node.js ${{ matrix.node-version }}
1212
uses: actions/setup-node@v1
1313
with:
1414
node-version: ${{ matrix.node-version }}
1515
- name: Install Dependencies
16-
run: npm install --ignore-scripts
16+
run: npm install
1717
- name: Test
1818
run: npm run test

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "JSON parse with prototype poisoning protection",
55
"main": "index.js",
66
"scripts": {
7-
"test": "standard && tap test.js"
7+
"test": "standard && tape test.js"
88
},
99
"repository": {
1010
"type": "git",
@@ -25,6 +25,6 @@
2525
"homepage": "https://github.com/fastify/secure-json-parse#readme",
2626
"devDependencies": {
2727
"standard": "^16.0.0",
28-
"tap": "^12.7.0"
28+
"tape": "^5.1.1"
2929
}
3030
}

test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict'
22

3-
const test = require('tap').test
3+
const test = require('tape').test
44
const j = require('./index')
55

66
test('parse', t => {

0 commit comments

Comments
 (0)