Skip to content

Commit f439634

Browse files
committed
feat(supported-version): add user-defined kind
`kind` is a new input property for the `supported-version` action which allows one to define what specific versions of Magento they support. Currently, `kind` supports `latest`, `supported`, and `custom`. See the README for `supported-version` if you want more specifics
1 parent b34c2bf commit f439634

20 files changed

+7031
-68
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Test Actions
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
paths:
8+
- ".github/workflows/_internal-supported-version.yaml"
9+
- "supported-version/**"
10+
- "!(**/*.md)"
11+
pull_request:
12+
branches:
13+
- main
14+
paths:
15+
- ".github/workflows/_internal-supported-version.yaml"
16+
- "supported-version/**"
17+
- "!(**/*.md)"
18+
19+
jobs:
20+
unit-test:
21+
runs-on: ubuntu-latest
22+
steps:
23+
- uses: actions/checkout@v3
24+
25+
- run: npm ci
26+
shell: bash
27+
28+
- run: npm test
29+
shell: bash

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules/

0 commit comments

Comments
 (0)