Skip to content

Commit 558c043

Browse files
authored
Merge pull request #5 from form8ion/alpha
2 parents f4db1b7 + 5deb806 commit 558c043

11 files changed

Lines changed: 4137 additions & 328 deletions

File tree

.github/workflows/node-ci.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,23 @@ env:
1515
permissions:
1616
contents: read
1717
jobs:
18+
verify-matrix:
19+
runs-on: ubuntu-latest
20+
strategy:
21+
matrix:
22+
node:
23+
- 18.17.0
24+
- 20.6.1
25+
- 21
26+
steps:
27+
- uses: actions/checkout@v3
28+
- name: Setup node
29+
uses: actions/setup-node@v3
30+
with:
31+
node-version: ${{ matrix.node }}
32+
cache: npm
33+
- run: npm clean-install
34+
- run: npm test
1835
verify:
1936
runs-on: ubuntu-latest
2037
steps:

.gitignore

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
2-
3-
4-
51
/node_modules/
62
/lib/
73
/coverage/
84

9-
.eslintcache
5+
.eslintcache
6+
7+
.idea
8+
!.idea/
9+
.idea/*
10+
!.idea/runConfigurations/

.idea/runConfigurations/Unit_Tests.xml

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ form8ion plugin for managing GitHub workflows
2626
[![MIT license][license-badge]][license-link]
2727
[![npm][npm-badge]][npm-link]
2828
[![Try @form8ion/github-workflows on RunKit][runkit-badge]][runkit-link]
29+
![node][node-badge]
2930

3031
<!--consumer-badges end -->
3132

@@ -117,3 +118,5 @@ $ npm test
117118
[runkit-link]: https://npm.runkit.com/@form8ion/github-workflows
118119

119120
[runkit-badge]: https://badge.runkitcdn.com/@form8ion/github-workflows.svg
121+
122+
[node-badge]: https://img.shields.io/node/v/@form8ion/github-workflows?logo=node.js

0 commit comments

Comments
 (0)