emacs/.forgejo/workflows/demo.yml
Maciej Szlosarczyk 706607afba
Some checks failed
/ Test config on 20 (push) Failing after 23s
Does it start and exit without problems?
2024-10-30 14:34:41 +02:00

26 lines
622 B
YAML

on: [push]
jobs:
test:
name: Test config on ${{matrix.node}}
runs-on: docker
strategy:
matrix:
node: ["20"]
steps:
- name: Checkout
uses: https://code.forgejo.org/actions/checkout@v4
- name: Setup NodeJS
uses: https://code.forgejo.org/actions/setup-node@v4
with:
node-version: ${{matrix.node}}
- name: Install eask
run: npm install -g @emacs-eask/cli
- name: Run tests
run: emacs --init-directory . --debug-init --eval "(kill-emacs 0)"
- name: Uninstall eask
run: npm uninstall -g @emacs-eask/cli