All checks were successful
/ Test config on ${{matrix.node}} (20) (push) Successful in 21s
23 lines
472 B
YAML
23 lines
472 B
YAML
on: [push]
|
|
jobs:
|
|
test:
|
|
name: Test config on ${{matrix.node}}
|
|
runs-on: docker
|
|
strategy:
|
|
matrix:
|
|
node: ["20"]
|
|
|
|
steps:
|
|
- name: Setup NodeJS
|
|
uses: actions/setup-node@v4
|
|
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
|