diff --git a/.github/workflows/tester.yml b/.github/workflows/tester.yml index 44ff74c8..d6e31a39 100644 --- a/.github/workflows/tester.yml +++ b/.github/workflows/tester.yml @@ -27,7 +27,7 @@ jobs: - name: Install Dependencies run: npm install - name: Test - run: npm run test + run: npm test env: CI: true coverage: diff --git a/assets b/assets index 888048df..456fd9aa 160000 --- a/assets +++ b/assets @@ -1 +1 @@ -Subproject commit 888048df4b537772cba460d891dfb06a71e5a897 +Subproject commit 456fd9aae36c1a345df53612da9ba4b65b094648 diff --git a/package.json b/package.json index d308b1de..8effd84b 100644 --- a/package.json +++ b/package.json @@ -9,12 +9,14 @@ "files": [ "lib", "completion", - "bin" + "bin", + "assets" ], "scripts": { "eslint": "eslint .", "test": "mocha test/index.js", - "test-cov": "nyc --reporter=lcovonly npm run test" + "test-cov": "nyc --reporter=lcovonly npm test", + "prepare": "git submodule init && git submodule update && git submodule foreach git pull origin master" }, "directories": { "lib": "./lib",