-
-
Notifications
You must be signed in to change notification settings - Fork 8
41 lines (39 loc) · 931 Bytes
/
check-extension.yaml
File metadata and controls
41 lines (39 loc) · 931 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Check Extension
on:
workflow_dispatch: {}
schedule:
- cron: 0 12 10 * *
push:
branches:
- main
paths-ignore:
- "docs/**"
- package.json
- package-lock.json
- "*.md"
pull_request:
branches:
- main
paths-ignore:
- "docs/**"
- package.json
- package-lock.json
- "*.md"
jobs:
compute_matrix:
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.supported-version.outputs.matrix }}
steps:
- uses: graycoreio/github-actions-magento2/supported-version@main
id: supported-version
with:
include_services: true
check-extension:
needs: compute_matrix
uses: graycoreio/github-actions-magento2/.github/workflows/check-extension.yaml@main
with:
matrix: ${{ needs.compute_matrix.outputs.matrix }}
fail-fast: false
secrets:
composer_auth: ${{ secrets.COMPOSER_AUTH }}