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 714af8b commit 065a6d2Copy full SHA for 065a6d2
.github/workflows/karma-tests.yml
@@ -30,4 +30,4 @@ jobs:
30
- name: Run Karma tests
31
uses: GabrielBB/xvfb-action@v1
32
with:
33
- run: make check ARGS=--single-run
+ run: make test ARGS=--single-run
Makefile
@@ -13,10 +13,11 @@ node_modules: package.json package-lock.json
13
eslint: node_modules
14
$(ESLINT) src/**/*.js test/**/*.js Gruntfile.js
15
16
+test: eslint
17
+ $(KARMA) start karma.conf.js $(ARGS)
18
19
.PHONY: check
-check: eslint dist
- $(KARMA) start karma.conf.js $(ARGS)
20
+check: dist test
21
22
dist/libsignal-protocol.js:: node_modules
23
$(GRUNT) build
0 commit comments