This commit is contained in:
parent
ac100d7ffe
commit
fa42deb474
1 changed files with 13 additions and 1 deletions
|
|
@ -1,6 +1,18 @@
|
|||
on: [push]
|
||||
jobs:
|
||||
test:
|
||||
name: "Test config on ${{matrix.node}}"
|
||||
runs-on: docker
|
||||
strategy:
|
||||
matrix:
|
||||
node: ["20"]
|
||||
|
||||
steps:
|
||||
- run: echo All Good
|
||||
- name: Setup NodeJS
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: ${{matrix.node}}
|
||||
- name: Install eask
|
||||
run: npm install -g eask
|
||||
- name: Uninstall eask
|
||||
run: npm uninstall -g eask
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue