emacs/.forgejo/workflows/demo.yml
Maciej Szlosarczyk 4768d141d6
Some checks failed
/ Test config on 20 (push) Failing after 13s
Podman
2026-04-14 18:53:17 +03:00

27 lines
581 B
YAML

on: [push]
jobs:
test:
runs-on: podman
name: Test config on ${{matrix.node}}
strategy:
matrix:
node: ["20"]
steps:
- name: Checkout
uses: https://code.forgejo.org/actions/checkout@v6
- name: Setup NodeJS
uses: https://code.forgejo.org/actions/setup-node@v6
with:
node-version: ${{matrix.node}}
- name: Install eask
run: npm install -g @emacs-eask/cli
- name: Run tests
run: eask test buttercup
- name: Uninstall eask
run: npm uninstall -g @emacs-eask/cli