Skip to content

Commit 065a6d2

Browse files
committed
Fix CI by not including emcc compilation
1 parent 714af8b commit 065a6d2

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/karma-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ jobs:
3030
- name: Run Karma tests
3131
uses: GabrielBB/xvfb-action@v1
3232
with:
33-
run: make check ARGS=--single-run
33+
run: make test ARGS=--single-run

Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,11 @@ node_modules: package.json package-lock.json
1313
eslint: node_modules
1414
$(ESLINT) src/**/*.js test/**/*.js Gruntfile.js
1515

16+
test: eslint
17+
$(KARMA) start karma.conf.js $(ARGS)
1618

1719
.PHONY: check
18-
check: eslint dist
19-
$(KARMA) start karma.conf.js $(ARGS)
20+
check: dist test
2021

2122
dist/libsignal-protocol.js:: node_modules
2223
$(GRUNT) build

0 commit comments

Comments
 (0)