We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents dd10f70 + 5355096 commit 8818e76Copy full SHA for 8818e76
.github/workflows/build.yml
@@ -41,4 +41,5 @@ jobs:
41
- name: Run a multi-line script
42
run: |
43
emacs --version
44
+ make build
45
make test
Makefile
@@ -11,10 +11,10 @@ ELCS = $(ELS:.el=.elc)
11
clean:
12
rm -f $(ELCS)
13
14
-eask: clean
+build: clean
15
$(EASK) compile
16
17
-test: eask
+test:
18
+ $(EMACS) -Q -batch -L . -l typescript-mode-tests.el -f ert-run-tests-batch-and-exit
19
20
# end
0 commit comments