From dffe7bf8f4ce7e24dbf95dbd26dbf6d55b600571 Mon Sep 17 00:00:00 2001 From: Maciej Szlosarczyk Date: Thu, 30 May 2024 21:57:52 +0300 Subject: [PATCH] Proper setup --- .forgejo/workflows/demo.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.forgejo/workflows/demo.yml b/.forgejo/workflows/demo.yml index 08c92a7..4fe360d 100644 --- a/.forgejo/workflows/demo.yml +++ b/.forgejo/workflows/demo.yml @@ -1,7 +1,7 @@ on: [push] jobs: test: - name: "Test config on ${{matrix.node}}" + name: Test config on ${{matrix.node}} runs-on: docker strategy: matrix: @@ -12,7 +12,9 @@ jobs: uses: actions/setup-node@v4 with: node-version: ${{matrix.node}} + - name: Install eask - run: npm install -g eask + run: npm install -g @emacs-eask/cli + - name: Uninstall eask - run: npm uninstall -g eask + run: npm uninstall -g @emacs-eask/cli