Simple setup
Some checks failed
/ Test config on ${{matrix.node}} (20) (push) Failing after 49s

This commit is contained in:
Maciej 2024-05-30 21:55:27 +03:00
parent ac100d7ffe
commit fa42deb474
Signed by: maciej
GPG key ID: 41D62D42D3B0D765

View file

@ -1,6 +1,18 @@
on: [push] on: [push]
jobs: jobs:
test: test:
name: "Test config on ${{matrix.node}}"
runs-on: docker runs-on: docker
strategy:
matrix:
node: ["20"]
steps: 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