branch: elpa/typescript-mode
commit 8818e767a63c48c624ef27816d6ce6e7622d782a
Merge: dd10f702d4 53550968ee
Author: Jostein Kjønigsen <jost...@kjonigsen.net>
Commit: GitHub <nore...@github.com>

    Merge pull request #194 from emacs-typescript/feature/make-test
    
    Make "make test" run without eask. Simplify contributer testing.
---
 .github/workflows/build.yml | 1 +
 Makefile                    | 4 ++--
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 25e219a34f..5096b4ef5c 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -41,4 +41,5 @@ jobs:
       - name: Run a multi-line script
         run: |
           emacs --version
+          make build
           make test
diff --git a/Makefile b/Makefile
index 8046aa66e5..cf5829780d 100644
--- a/Makefile
+++ b/Makefile
@@ -11,10 +11,10 @@ ELCS = $(ELS:.el=.elc)
 clean:
        rm -f $(ELCS)
 
-eask: clean
+build: clean
        $(EASK) compile
 
-test: eask
+test:
        + $(EMACS) -Q -batch -L . -l typescript-mode-tests.el -f 
ert-run-tests-batch-and-exit
 
 # end

Reply via email to