We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90d7fff commit a469c53Copy full SHA for a469c53
.github/workflows/push-requests.yml
@@ -0,0 +1,9 @@
1
+name: Pull Requests
2
+
3
+on:
4
+ pull_request:
5
+ branches: [master]
6
7
+jobs:
8
+ test:
9
+ uses: ./.github/workflows/test.yml
.github/workflows/test.yml
@@ -0,0 +1,13 @@
+ workflow_call:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Git checkout
+ uses: actions/checkout@v2
10
11
+ - uses: actions/setup-node@v2
12
+ - run: npm install
13
+ - run: npm test
.travis.yml
package.json
@@ -5,6 +5,9 @@
"author": "Jason Chen <jhchen7@gmail.com>",
"main": "diff.js",
"types": "diff.d.ts",
+ "files": [
+ "diff.d.ts"
+ ],
"devDependencies": {
"lodash": "~4.17.21",
"nyc": "~15.1.0",
@@ -24,4 +27,4 @@
24
27
"keywords": [
25
28
"diff"
26
29
]
-}
30
+}
0 commit comments