This commit is contained in:
parent
40d1e1d4bb
commit
1a6b8836a3
9 changed files with 63 additions and 33 deletions
26
.forgejo/workflows/ci.yml
Normal file
26
.forgejo/workflows/ci.yml
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue