Skip to content

Commit 8818e76

Browse files
authored
Merge pull request #194 from emacs-typescript/feature/make-test
Make "make test" run without eask. Simplify contributer testing.
2 parents dd10f70 + 5355096 commit 8818e76

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/build.yml

+1
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,5 @@ jobs:
4141
- name: Run a multi-line script
4242
run: |
4343
emacs --version
44+
make build
4445
make test

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ ELCS = $(ELS:.el=.elc)
1111
clean:
1212
rm -f $(ELCS)
1313

14-
eask: clean
14+
build: clean
1515
$(EASK) compile
1616

17-
test: eask
17+
test:
1818
+ $(EMACS) -Q -batch -L . -l typescript-mode-tests.el -f ert-run-tests-batch-and-exit
1919

2020
# end

0 commit comments

Comments
 (0)