Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
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
  • Loading branch information
damienwebdev committed Aug 5, 2022
commit d2ce48f487e2e66c86ed39e46f4a3b2cac242762
29 changes: 29 additions & 0 deletions .github/workflows/_internal_test_actions.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Test Actions

on:
push:
branches:
- main
paths:
- ".github/workflows/_internal-supported-version.yaml"
- "supported-version/**"
- "!(**/*.md)"
pull_request:
branches:
- main
paths:
- ".github/workflows/_internal-supported-version.yaml"
- "supported-version/**"
- "!(**/*.md)"

jobs:
unit-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- run: npm ci
shell: bash

- run: npm test
shell: bash
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules/
Loading