Skip to content

Commit 798e15a

Browse files
authored
Merge branch '2Toad:master' into patch-1
2 parents b3e888d + dcb1572 commit 798e15a

File tree

4 files changed

+280
-4
lines changed

4 files changed

+280
-4
lines changed

.github/workflows/nodejs.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Node CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
10+
strategy:
11+
matrix:
12+
node-version: [8.x, 12.x, 16.x, lts/*]
13+
14+
steps:
15+
- uses: actions/checkout@v3
16+
- name: Use Node.js ${{ matrix.node-version }}
17+
uses: actions/setup-node@v3
18+
with:
19+
node-version: ${{ matrix.node-version }}
20+
- name: npm install, build, and test
21+
run: |
22+
npm ci
23+
npm run build --if-present
24+
npm test
25+
env:
26+
CI: true

.travis.yml

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

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
a JavaScript implementation of Google's [diff-match-patch](https://code.google.com/archive/p/google-diff-match-patch/) lib
55

66
[![Build Status](https://img.shields.io/travis/2Toad/diff-match-patch/master.svg)](https://travis-ci.org/2Toad/diff-match-patch)
7-
[![Dependency Status](https://img.shields.io/david/2Toad/diff-match-patch.svg)](https://david-dm.org/2Toad/diff-match-patch)
87
[![NPM version](https://img.shields.io/npm/v/@2toad/diff-match-patch.svg)](https://www.npmjs.com/package/@2toad/diff-match-patch)
98
[![Known Vulnerabilities](https://snyk.io/test/github/2Toad/diff-match-patch/badge.svg)](https://snyk.io/test/github/2Toad/diff-match-patch)
109

package-lock.json

Lines changed: 254 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)