Move to eask
All checks were successful
/ Test config on 20 (push) Successful in 27s

This commit is contained in:
Maciej 2024-08-15 18:34:46 +03:00
parent 40d1e1d4bb
commit 1a6b8836a3
Signed by: maciej
GPG key ID: 41D62D42D3B0D765
9 changed files with 63 additions and 33 deletions

26
.forgejo/workflows/ci.yml Normal file
View file

@ -0,0 +1,26 @@
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: eask test buttercup
- name: Uninstall eask
run: npm uninstall -g @emacs-eask/cli